#abc064a. [abc064_a]RGB Cards

[abc064_a]RGB Cards

Problem Statement

AtCoDeer has three cards, one red, one green and one blue.
An integer between 11 and 99 (inclusive) is written on each card: rr on the red card, gg on the green card and bb 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 44?

Constraints

  • 1r,g,b91 ≤ r, g, b ≤ 9

Input

Input is given from Standard Input in the following format:

rr gg bb

Output

If the three-digit integer is a multiple of 44, print YES (case-sensitive); otherwise, print NO.


Sample Input 1

4 3 2

Sample Output 1

YES

432432 is a multiple of 44, and thus YES should be printed.


Sample Input 2

2 3 4

Sample Output 2

NO

234234 is not a multiple of 44, and thus NO should be printed.