10 lines
120 B
Python
10 lines
120 B
Python
s = input("Do you agree? ")
|
|
s = s.lower()
|
|
|
|
if s in ["y", "yes"]:
|
|
|
|
print("Agreed.")
|
|
|
|
else:
|
|
print("Not Agreed.")
|