https://www.acmicpc.net/problem/5086
#Solution
x, y = map(int, input().split())
while (x, y) != (0, 0):
if x % y == 0:
print("multiple")
elif y % x == 0:
print("factor")
else:
print("neither")
x, y = map(int, input().split())
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#125 백준 파이썬 [1463] 1로 만들기 - 점화식 (0) | 2019.10.01 |
---|---|
#124 백준 파이썬 [1037] 약수 (0) | 2019.09.30 |
#122 백준 파이썬 [3053] 택시 기하학 (0) | 2019.09.30 |
#121 백준 파이썬 [3009] 네 번째 점 (0) | 2019.09.30 |
#120 백준 알고리즘 [3036] 링 (0) | 2019.09.30 |