summaryrefslogtreecommitdiff
path: root/wk6/lect/agree.py
blob: aace9f086dff6ccc2b83a921d73bba50daf0215b (plain)
1
2
3
4
5
6
s = input("Do you agree? ")

if s == "Y" or s == "y":
    print('Agreed')
elif s == 'N' or s == 'n':
    print("Not agreed")