name = input('Please type your name: ') age = input('Enter your age: ') if int(age) >= 18: print(name, 'is eligible to vote') else: numYears = 18-int(age) print('You will be eligible to vote in',numYears,'years') print('Bye!')