# Question: Ask the user for their age. If they are 18 or older tell them “You can vote”. # Ask the user for their age age = int(input("Enter your age: ")) # Check if the user is 18 or older if age >= 18: print("You can vote") else: print("You cannot vote yet")