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.
Main.java is the entry point. Add extra classes for OOP exercises — they compile together.
Run your code to see test results here.