#C10640. Divisibility Check
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
.
10 5
Yes
</p>