Problem B
Oddities
Some numbers are just, well, odd. For example, the number
Some people get confused about whether numbers are odd or even. To see a common example, do an internet search for the query “is zero even or odd?” (Don’t search for this now! You have a problem to solve!)
Write a program to help these confused people.
Input
Input begins with an integer
Output
For each
Sample Input 1 | Sample Output 1 |
---|---|
3 10 9 -5 |
10 is even 9 is odd -5 is odd |