Given a three digit number. Determine if the sum of its digits is a multiple of 5. Display the word
YES or
NO.
Input
The input is a positive three-digit number.
Imprint
Print the answer word
YES if the sum of the digits of the original number is a multiple of 5, otherwise print the word
NO.
Examples
| # |
Input |
Output |
| 1 |
473 |
NO |
| 2 |
451 |
YES |