Product

AtCoder
IDabc086_a
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
3 4
Output #1
Even

As $3 × 4 = 12$ is even, print `Even`.
Input #2
1 21
Output #2
Odd

As $1 × 21 = 21$ is odd, print `Odd`.
API Response (JSON)
{
  "problem": {
    "name": "Product",
    "description": {
      "content": "AtCoDeer the deer found two positive integers, $a$ and $b$. Determine whether the product of $a$ and $b$ is even or odd.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc086_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "AtCoDeer the deer found two positive integers, $a$ and $b$. Determine whether the product of $a$ and $b$ is even or odd.\n\n## Constraints\n\n*   $1$ $≤$ $a,b$ $≤$ $10000$\n*   $a$ and $b$ are integers.\n\n#...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments