Even or Odd

EasyGrade 10

Read one integer and print "Even" if it's even, or "Odd" if it's odd.

Input / Output

Input: a single integer. Output: the word "Even" or "Odd" (capitalised exactly like that).

Examples

Input

4

Expected Output

Even

Input

7

Expected Output

Odd

+ 2 hidden tests checked on Submit.

Files

Main.java is the entry point. Add extra classes for OOP exercises — they compile together.

Main.java
Loading...

Run your code to see test results here.