#K66992. Divisor Checker

    ID: 32543 Type: Default 1000ms 256MiB

Divisor Checker

Divisor Checker

Given two integers (A) and (B), determine whether (B) is a divisor of (A). In other words, check if (A % B = 0) holds true. If it does, output "Yes"; otherwise, output "No". This problem tests basic divisibility checks in programming.

inputFormat

The input is provided via standard input (stdin) and consists of two space-separated integers: (A) and (B). For example, an input could be:

10 5

outputFormat

The output should be printed to standard output (stdout) as a single line containing either "Yes" if (B) is a divisor of (A), or "No" otherwise.## sample

10 5
Yes