[백준] 5086번 : 배수와 약수 (파이썬)

문제

나의 답안

while True:
    n1,n2=map(int,input().split())

    if n1==0 and n2==0:
        break
    elif n2%n1==0:#약수인 경우
        print('factor')
    elif n1%n2==0: #배수인 경우
        print('multiple')
    else:#둘 다 아닌 경우
        print('neither')

0 0을 입력받을 때까지 반복해주고, 입력에 따른 조건을 설정해주면 된다.

좋은 웹페이지 즐겨찾기