honey_pot

[python] 백준 5086번 본문

문제 풀이

[python] 백준 5086번

_tera_ 2021. 6. 8. 00:50

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

'문제 풀이' 카테고리의 다른 글

[python] 백준 7567번  (0) 2021.06.08
[python] 백준 10988번  (0) 2021.06.08
[python] 백준 10214번  (0) 2021.06.08
[python] 백준 10162번  (0) 2021.06.08
[python] 백준 5717번  (0) 2021.06.08
Comments