Your program will ask the user for the number of values that (s)he will enter. Then your program will ask the user for that number of values
For each value that the user enters, your program will print whether the number even or odd.
Hint - A number is even if dividing it by two gives you a
remainder of 0 (i.e., x % 2 == 0
).