문제 바로가기> 백준 4504번: 배수 찾기
입력 받은 수로 나누어떨어지는 확인하면 되는 간단한 문제이다. 출력하는 형식만 주의해주면 된다.
def solution():
import sys
input = sys.stdin.readline
n = int(input())
while(1):
tmp = int(input())
if tmp==0: break
else:
if tmp%n==0: print("%d is a multiple of %d."%(tmp, n))
else: print("%d is NOT a multiple of %d."%(tmp, n))
solution()