eolymp
bolt
Try our new interface for solving problems
Problems

Even or Odd

Even or Odd

Positive integer $n$ is given. Determine its parity. \InputFile One positive integer $n~(1 \le n \le 10^9)$. \OutputFile If number $n$ is even, print "\textbf{EVEN}". If number is odd, print "\textbf{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