본문 바로가기

알고리즘/python

[python/파이썬] 백준 5086 배수와 약수

반응형

[문제 출처]

https://www.acmicpc.net/problem/5086

 

5086번: 배수와 약수

각 테스트 케이스마다 첫 번째 숫자가 두 번째 숫자의 약수라면 factor를, 배수라면 multiple을, 둘 다 아니라면 neither를 출력한다.

www.acmicpc.net

 

[소스 코드]

#5086
while True:
    a, b = map(int,input().split())
    if a==0 and b== 0:
        break
    if b%a==0:
        print("factor")
    elif a%b==0:
        print("multiple")
    else:
        print("neither")
반응형