age = eval(input("Enter your age")) if age >= 18: print ("Eligible to vote") print ("Eligible to drive") else: print ("Not eligible to vote") print ("Not eligible to drive")