Problems
Even or Odd
Even or Odd
Positive integer n is given. Determine its parity.
Input
One positive integer n (1 ≤ n ≤ 109
).
Output
If number n is even, print EVEN. If number is odd, print ODD.
Input example #1
3
Output example #1
ODD
Input example #2
100
Output example #2
EVEN