프로그래밍_일반/백준
boj 4504
Spadework
2020. 2. 4. 10:18
* Solved 기준 브론즈3 단순 풀이
n = int(input())
while True:
a = int(input())
if not(a): break
print('{} is {}a multiple of {}.'.format(a,'NOT ' if a%n else '',n))