summaryrefslogtreecommitdiff
path: root/comp/hw/1/2.py
blob: dd1c61981a0fe227a03bf49fce996fd50b67ef6e (plain)
1
2
3
4
5
6
7
age = int(input("age: "))
if age >= 18:
    print("user is an adult")
elif age < 13:
    print("user is a child")
else:
    print("user is a teenager")