Problems
410 - Odd or Even
SUBMIT PROBLEM

Odd or Even

Time Limit: 1 sec

 

The Problem

Make a simple program that reads an integer number N and print "Odd" if the number is odd otherwise print "Even".

 

22 -Even , 27 -> Odd

 

The Input

Input file contain a series of line, each line contain one integer number N (N<=50000). Input is terminated by EOF.

 

The Output

For each line of input, print "Odd" if the number is odd otherwise print "Even" in a separate line.

 

Sample Input

78

13

200

 

Sample Output

Even

Odd

Even

 

 

 

 

Problem Setter: Shahin ShamS