BlueBook
Write a program that reads two positive integers and then determines whether or not the first number is a multiple of the second.
The program should output yes
if they are, and no
otherwise.
Input Specification
The input consists of two integer numbers
Output Specification
Output yes
if the first number is a multiple of the second number.
Sample Input 1
Copy
200
100
Sample Output 1
Copy
yes
Sample Input 2
Copy
100
200
Sample Output 2
Copy
no
Comments