Write a program that reads in two integers and determines and prints if the first is a multiple of the second. [Hint: Use the modulus operator.]
Write a program that reads in two integers and determines and prints if the first is a multiple of the second. [Hint: Use the modulus operator.]
A line that contains two integer
Prints if the first is a multiple of the second
输入
31 5
输出
31 is not a multiple of 5