#abc060b. [abc060_b]Choose Integers
[abc060_b]Choose Integers
Problem Statement
We ask you to select some number of positive integers, and calculate the sum of them.
It is allowed to select as many integers as you like, and as large integers as you wish. You have to follow these, however: each selected integer needs to be a multiple of , and you need to select at least one integer.
Your objective is to make the sum congruent to modulo . Determine whether this is possible.
If the objective is achievable, print YES
. Otherwise, print NO
.
Constraints
Input
Input is given from Standard Input in the following format:
Output
Print YES
or NO
.
Sample Input 1
7 5 1
Sample Output 1
YES
For example, if you select and , the sum is congruent to modulo .
Sample Input 2
2 2 1
Sample Output 2
NO
The sum of even numbers, no matter how many, is never odd.
Sample Input 3
1 100 97
Sample Output 3
YES
You can select , since you may select multiples of , that is, all integers.
Sample Input 4
40 98 58
Sample Output 4
YES
Sample Input 5
77 42 36
Sample Output 5
NO