#K82307. Even or Odd Product

    ID: 35946 Type: Default 1000ms 256MiB

Even or Odd Product

Even or Odd Product

You are given two integers (x) and (y). Your task is to determine whether the product (x \times y) is even or odd. A product is considered even if it is divisible by 2 (i.e. if (x \times y \mod 2 = 0)); otherwise, it is odd. This problem tests your ability to perform basic arithmetic operations and apply simple conditional logic.

inputFormat

The input consists of a single line containing two space-separated integers (x) and (y).

outputFormat

Output a single line with the word "Even" if the product (x \times y) is even, or "Odd" if it is odd.## sample

4 5
Even