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' and felon[0].lower() == 'n'and age >= 18:
    print("Congratulations, you can vote!")
else:
    print("Sorry, no voting for you...")