# Version 2- Conditional Statement age = int(input("How old are you? ")) if age <=10: print("Younster") elif age <=25: print("Get a job") else: print("You have fossillised") print("The program has ended")