지나가던 개발자

[Python] 백준 4504번(배수 찾기) 문제 풀이 본문

PS/Python

[Python] 백준 4504번(배수 찾기) 문제 풀이

KwonYongHyeon 2022. 2. 18. 18:23

 

n = int(input())
hihi = []
while True:
    a = int(input())
    if a == 0:
        break
    hihi.append(a)
for hi in hihi:
    if hi % n == 0:
        print(str(hi) + " is a multiple of " + str(n) + ".")
        continue
    print(str(hi) + " is NOT a multiple of " + str(n) + ".")

 

Comments