#abc086a. [abc086_a]Product

[abc086_a]Product

Problem Statement

AtCoDeer the deer found two positive integers, aa and bb. Determine whether the product of aa and bb is even or odd.

Constraints

  • 11 a,ba,b 1000010000
  • aa and bb are integers.

Input

Input is given from Standard Input in the following format:

aa bb

Output

If the product is odd, print Odd; if it is even, print Even.


Sample Input 1

3 4

Sample Output 1

Even

As 3×4=123 × 4 = 12 is even, print Even.


Sample Input 2

1 21

Sample Output 2

Odd

As 1×21=211 × 21 = 21 is odd, print Odd.