Some Sum

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Your friend has secretly picked NN consecutive positive integers between 11 and 100100, and wants you to guess if their sum is even or odd.

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'.

입력

The input is a single integer NN with 1N101 \le N \le 10.

출력

Output a single word. The word should be 'Even', 'Odd', or 'Either', according to the rules given earlier.