Competitions
Week 2 Conditionals Part 1
Even or Odd
Positive integer n is given. Determine its parity.
Input data
One positive integer n (1 ≤ n ≤ 10^9
).
Output data
If number n is even, print EVEN. If number is odd, print ODD.
Examples
Input example #1
3
Output example #1
ODD
Input example #2
100
Output example #2
EVEN