# STUDENT NAME HERE
# Python version 3.x.x
# Congress Age Checker
# 1: Variables
age = input("Enter Age: ")
# 2. Variables
# Using the above as a guide, complete the following line so that
# "Enter Number of years as a US Citizen: " will appear when the script is executed
citizen = input("Enter Number of years as a US Citizen: ")
# 3. Conditional Statement
# Using the variables 'age' & 'citizen', construct a conditional statement that will check to see if the person is eligible to run for Congress
if int(age) >= 25 and int(citizen) >= 7:
print("You are eligible to run for Congress.")
else:
print("You are not eligible to run for Congress.")