badage = int("17")
goodage = int("18")
print("Check if you are eligible to vote in the United States")
users_age = int(input("How old are you?:"))
if users_age == badage :
print("You are ineligible to vote in the United States")
if users_age == goodage :
print("You are eligible to vote in the United States")
Мне интересно, как заставить его говорить то же самое, что и badage и goodage для каждого числа ниже 18 и выше 18.