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
- Text
- Forensics
- HackCTF
- Incognito
- cryptography
- CTF
- misc
- xcz.kr
- 수학
- N0Named
- 그리디 알고리즘
- Network
- MySQL
- Database
- 인코그니토
- 써니나타스
- 문자열
- 사칙연산
- 백준
- writeup
- 구현
- C
- wargame
- Python
- Digital Forensics
- Web
- SuNiNaTas
- php
- Web Hacking
- 정렬
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10952번 A + B - 5 본문
[Baekjoon/Python3] 10952번 A + B - 5
while True:
A, B = map(int, input().split())
if A == 0 and B == 0:
break;
print (A + B)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10984번 내 학점을 구해줘 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10953번 A + B - 6 (0) | 2020.12.06 |
[Baekjoon/Python3] 10951번 A + B - 4 (0) | 2020.12.06 |
[Baekjoon/Python3] 10950번 A + B - 3 (0) | 2020.12.06 |
[Baekjoon/Python3] 10939번 BASE32 디코딩 (0) | 2020.12.06 |
Comments