100 atcoder#ABC086A. [ABC086A] Product
[ABC086A] Product
Score : points
Problem Statement
AtCoDeer the deer found two positive integers, and . Determine whether the product of and is even or odd.
Constraints
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
If the product is odd, print Odd
; if it is even, print Even
.
3 4
Even
As is even, print Even
.
1 21
Odd
As is odd, print Odd
.