📄문제 🔍나의 코드 import sys input = sys.stdin.readline while True: a, b = map(int,input().split()) if a == 0 and b == 0: break elif a % b == 0: print('multiple') elif b % a == 0: print('factor') else: print('neither') 문제 출처 : https://www.acmicpc.net/problem/5086