

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 100 点
問題文
AtCoDeer君は、赤、緑、青色のカードを持っています。
それぞれのカードには 1 以上 9 以下の整数が書かれており、赤色のカードには r、緑色のカードには g、青色のカードには b が書かれています。
3 つのカードを左から順に赤、緑、青色の順に並べ、左から整数を読んだときにこれが 4 の倍数であるか判定しなさい。
制約
- 1 ≤ r, g, b ≤ 9
入力
入力は以下の形式で標準入力から与えられる。
r g b
出力
AtCoDeer君が作った 3 桁の整数が 4 の倍数ならば YES
、そうでないならば NO
を出力しなさい。
入力例 1
4 3 2
出力例 1
YES
AtCoDeer君は 432 を作り、これは 4 の倍数です。よって YES
を出力します。
入力例 2
2 3 4
出力例 2
NO
AtCoDeer君は 234 を作りますが、これは 4 の倍数ではありません。よって NO
を出力します。
Score : 100 points
Problem Statement
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
Output
If the three-digit integer is a multiple of 4, print YES
(case-sensitive); otherwise, print NO
.
Sample Input 1
4 3 2
Sample Output 1
YES
432 is a multiple of 4, and thus YES
should be printed.
Sample Input 2
2 3 4
Sample Output 2
NO
234 is not a multiple of 4, and thus NO
should be printed.