ABC086A - Product
Editorial
/


Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 点
問題文
シカのAtCoDeerくんは二つの正整数 を見つけました。 と の積が偶数か奇数か判定してください。
制約
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
積が奇数なら Odd
と、 偶数なら Even
と出力せよ。
入力例 1Copy
Copy
3 4
出力例 1Copy
Copy
Even
は偶数なので Even
を出力してください。
入力例 2Copy
Copy
1 21
出力例 2Copy
Copy
Odd
は奇数なので Odd
を出力してください。
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
.
Sample Input 1Copy
Copy
3 4
Sample Output 1Copy
Copy
Even
As is even, print Even
.
Sample Input 2Copy
Copy
1 21
Sample Output 2Copy
Copy
Odd
As is odd, print Odd
.