Even or Odd

EASY · C · 2000ms

Next, the mentor hands Fahim a stack of roll-number cards and asks him to write a quick program that sorts them into odd and even piles. Read an integer N and print "EVEN" if it is even, otherwise print "ODD".

Input

One integer N.

Output

"EVEN" or "ODD".

Constraints

-10^9 ≤ N ≤ 10^9

Sample Input

7

Sample Output

ODD
main.c
Loading editor…

Write C, then Run (custom I/O) or Submit (sample tests). ⌘/Ctrl+Enter submits.

Even or Odd · DIU ContestHub