코딩테스트 연습/백준

[백준] 5086번 : 배수와 약수 in python 파이썬

슈퍼짱짱 2019. 11. 28. 17:37
반응형

파이썬으로 백준풀기 :: 5086번 배수와 약수


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




코드


1
2
3
4
5
6
7
8
9
def 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


반응형