#C10640. Divisibility Check

    ID: 39868 Type: Default 1000ms 256MiB

Divisibility Check

Divisibility Check

Given two integers, \(B\) and \(C\), determine whether \(B\) is divisible by \(C\). If it is divisible, output Yes; otherwise, output No. Ensure that your solution reads input from standard input (stdin) and writes the result to standard output (stdout). This problem assesses your understanding of basic modular arithmetic.

inputFormat

The input consists of a single line containing two space-separated integers: \(B\) and \(C\).

outputFormat

Output a single string: Yes if \(B\) is divisible by \(C\); otherwise, output No.

## sample
10 5
Yes

</p>