2.py (152B)
1 age = int(input("age: ")) 2 if age >= 18: 3 print("user is an adult") 4 elif age < 13: 5 print("user is a child") 6 else: 7 print("user is a teenager")