citizen = input("Are you a US Citizen?")
felon = input("Are you a felon?")
age = int(input("How many years ago were you introduced to this world?"))
if citizen[0].lower() == 'y':
    if felon[0].lower() == 'n':
        if age >= 18:
            print("Congratulations, you can vote!")
        else:
            print("Sorry, no voting for you...")
    else:
        print("Sorry, no voting for you...")
else:
    print("Sorry, no voting for you...")