EtashGuha's picture
Add files using upload-large-folder tool
248d4f6 verified
|
raw
history blame
796 Bytes

p03455 AtCoder Beginner Contest 086 - Product

Problem Description

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:

a b

Output

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

Examples

Input

3 4

Output

Even

Input

1 21

Output

Odd

Contest Information

  • Contest ID: 0
  • Problem Index:
  • Points: 0.0
  • Rating: 0
  • Tags:
  • Time Limit: {'seconds': 2, 'nanos': 0} seconds
  • Memory Limit: 268435456 bytes

Task

Solve this competitive programming problem. Provide a complete solution that handles all the given constraints and edge cases.