eolymp
Problems

Even or Odd

Even or Odd

Positive integer n is given. Determine its parity.

Input

One positive integer n (1n109).

Output

If number n is even, print EVEN. If number is odd, print ODD.

Time limit 1 second
Memory limit 128 MiB
Input example #1
3
Output example #1
ODD
Input example #2
100
Output example #2
EVEN