题目描述

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

备注


操作

评测记录

优秀代码

信息

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

题解