#C7399. Check Divisibility
Check Divisibility
Check Divisibility
You are given two integers, B and N. Your task is to determine if B is divisible by N without any remainder. Mathematically, you need to verify whether $$B \mod N = 0$$.
If the condition holds, print "YES"; otherwise, print "NO".
inputFormat
The input is provided via stdin as a single line containing two space-separated integers B and N.
outputFormat
Output a single line via stdout: "YES" if B is divisible by N without remainder; otherwise, "NO".
## sample10 2
YES
</p>