| CodeRams Practice Problem Archive |
|---|
| Finished |
You consider a number to be funny if it is divisible by both 5 and 7. Given a number, figure out whether or not it is a funny number.
The only line of input contains a single positive integer n: the number
Output "YES" if the number is funny, otherwise "NO". (no quotes)
21
NO
35
YES
| Name |
|---|


