RGB Cards

AtCoder
IDabc064_a
Time2000ms
Memory256MB
Difficulty
AtCoDeer has three cards, one red, one green and one blue. An integer between $1$ and $9$ (inclusive) is written on each card: $r$ on the red card, $g$ on the green card and $b$ on the blue card. We will arrange the cards in the order red, green and blue from left to right, and read them as a three-digit integer. Is this integer a multiple of $4$? ## Constraints * $1 ≤ r, g, b ≤ 9$ ## Input Input is given from Standard Input in the following format: $r$ $g$ $b$ [samples]
Samples
Input #1
4 3 2
Output #1
YES

$432$ is a multiple of $4$, and thus `YES` should be printed.
Input #2
2 3 4
Output #2
NO

$234$ is not a multiple of $4$, and thus `NO` should be printed.
API Response (JSON)
{
  "problem": {
    "name": "RGB Cards",
    "description": {
      "content": "AtCoDeer has three cards, one red, one green and one blue.   An integer between $1$ and $9$ (inclusive) is written on each card: $r$ on the red card, $g$ on the green card and $b$ on the blue card.   ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc064_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "AtCoDeer has three cards, one red, one green and one blue.  \nAn integer between $1$ and $9$ (inclusive) is written on each card: $r$ on the red card, $g$ on the green card and $b$ on the blue card.  \n...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments