📄문제
🔍나의 코드
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')
'백준 알고리즘' 카테고리의 다른 글
[백준(BOJ) - Python] 1789번 <수들의 합> (0) | 2022.03.31 |
---|---|
[백준(BOJ) - Python] 10872번 <팩토리얼> (0) | 2022.03.03 |
[백준(BOJ) - Python] 2751번 <수 정렬하기 2> (0) | 2022.02.21 |
[백준(BOJ) - Python] 2798번 <블랙잭> (0) | 2022.02.21 |
[백준(BOJ) - Python] 4153번 <직각삼각형> (0) | 2022.02.19 |