This commit is contained in:
2026-06-05 01:28:27 +00:00
parent bdde9bd1ca
commit 67b7ced5ba
19 changed files with 276 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
s = input("Do you agree? ")
s = s.lower()
if s in ["y", "yes"]:
print("Agreed.")
else:
print("Not Agreed.")