eolymp
Competitions

Week 2 Conditionals Part 1

Even or Odd

Time limit 1 second
Memory limit 128 MiB

Positive integer n is given. Determine its parity.

Input data

One positive integer n (1n10^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