파이썬으로 백준풀기 :: 5086번 배수와 약수 https://www.acmicpc.net/problem/5086 코드 123456789def bj5086(a,b) : if b%a == 0 : return "factor" elif a%b == 0 : return "multiple" else : return "neither" a, b = map(int, input().split())while a != 0 and b != 0 : print(bj5086(a, b)) a, b = map(int, input().split())cs