Write a program that reports whether or not someone is eligible to run for president in the U.S. You should do the following in your program:

Ask the user for their age, and store it in a variable
Ask the user if they are a citizen of the U.S.
Ask the user how long they’ve been a resident in the U.S.
Use an if/else statement with the proper comparison operator to print You are eligible to run for president! if they have the following credentials:
They are at least 35 years old
They were born in the U.S.
They have been a resident for at least 14 years