시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB103064056961.117%

문제

Your friend has secretly picked $N$ consecutive positive integers between $1$ and $100$, 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 $N$ with $1 \le N \le 10$.

출력

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

예제 입력 1

1

예제 출력 1

Either

예제 입력 2

2

예제 출력 2

Odd