题目描述

Write a function multiple that determines for a pair of integers whether the second is a multiple of the first. The function should take two integer arguments and return true if the second is a multiple of the first, false otherwise. Use this function in a program that inputs a series of pairs of integers.


输入格式

End at -1.


输出格式


样例数据

输入

3 4
3 12
8 15
6 8
-1

输出

4 is not a multiple of 3
12 is a multiple of 3
15 is not a multiple of 8
8 is not a multiple of 6

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解