Problem B
Some Sum

Your friend has secretly picked
If the sum must be even, output ‘Even’. If the sum must be odd, output ‘Odd’. If the sum could be even or could be odd, output ‘Either’.
Input
The input is a single integer
Output
Output a single word. The word should be ‘Even’, ‘Odd’, or ‘Either’, according to the rules given earlier.
Sample Input 1 | Sample Output 1 |
---|---|
1 |
Either |
Sample Input 2 | Sample Output 2 |
---|---|
2 |
Odd |