CSES - HIIT Open 2018 - Alien Invasion
  • Time limit: 1.00 s
  • Memory limit: 512 MB

The aliens are coming and there is only one way to stop them: you have to solve a difficult mathematical problem.

The aliens give you a positive integer nn and you have to find out if it has an even or odd number of divisors. If you can determine the correct answer, the aliens will abort their mission.

Input

The only input line has an integer nn.

Output

Print "even" or "odd" according to the problem statement.

Constraints

  • 1n10181 \le n \le 10^{18}

Example 1

Input:

4

Output:

odd

Explanation: The divisors of 44 are 11, 22 and 44.

Example 2

Input:

6

Output:

even

Explanation: The divisors of 66 are 11, 22, 33 and 66.