#C7399. Check Divisibility

    ID: 51265 Type: Default 1000ms 256MiB

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".

## sample
10 2
YES

</p>