#AT1177. A - Product

A - Product

当前没有测试数据。

A - Product

Score : $100$ points

Problem Statement

AtCoDeer the deer found two positive integers, $a$ and $b$. Determine whether the product of $a$ and $b$ is even or odd.

Constraints

  • $1$ $≤$ $a,b$ $≤$ $10000$
  • $a$ and $b$ 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 = 12$ is even, print Even.


1 21
Odd

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