028. Funny Numbers
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Input

The only line of input contains a single positive integer n: the number

Output

Output "YES" if the number is funny, otherwise "NO". (no quotes)

Examples
Input
21
Output
NO
Input
35
Output
YES