Odd Or Even

Given an integer number, print odd if it's an odd or even if it's an even number
Note: Use the Scanner class and nextInt to scan the integer from input.

Example 1

Input

55

Output

odd

Example 2

Input

60

Output

even

Example 3

Input

999

Output

odd

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.