100 #ABC086A. [ABC086A] Product

[ABC086A] Product

Score : 100100 points

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 \leq a,ba,b \leq 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.

3 4
Even

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

1 21
Odd

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