Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SuNiNaTas
- N0Named
- php
- CTF
- Web Hacking
- Forensics
- Python
- Incognito
- 백준
- wargame
- misc
- 수학
- Text
- 구현
- xcz.kr
- 문자열
- writeup
- 인코그니토
- cryptography
- 그리디 알고리즘
- 사칙연산
- Network
- 정렬
- HackCTF
- 써니나타스
- Database
- Web
- Digital Forensics
- C
- MySQL
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 5086번 배수와 약수 본문
[Baekjoon/Python3] 5086번 배수와 약수
a, b = 0, 0
while True:
a, b = map(int, input().split())
if a == 0 and b == 0:
break
else:
if b % a == 0:
print('factor')
elif a % b == 0:
print('multiple')
else:
print('neither')
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 5337번 웰컴 (0) | 2020.12.05 |
---|---|
[Baekjoon/Python3] 5218번 알파벳 거리 (0) | 2020.12.05 |
[Baekjoon/Python3] 5073번 삼각형과 세 변 (0) | 2020.12.05 |
[Baekjoon/Python3] 5063번 TGN (0) | 2020.12.05 |
[Baekjoon/Python3] 4880번 다음수 (0) | 2020.12.04 |
Comments