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
- Web
- CTF
- 그리디 알고리즘
- 수학
- Forensics
- Digital Forensics
- Web Hacking
- Incognito
- php
- 인코그니토
- MySQL
- writeup
- misc
- cryptography
- 써니나타스
- SuNiNaTas
- xcz.kr
- wargame
- Database
- N0Named
- 구현
- 문자열
- C
- 정렬
- 백준
- Python
- Text
- 사칙연산
- HackCTF
- Network
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 11022번 A+B - 8 본문
[Baekjoon/Python3] 11022번 A+B - 8
T = int(input())
for i in range(1, T + 1):
A, B = map(int, input().split())
print('Case #%d: %d + %d = %d' %(i, A, B, A + B))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 11024번 더하기 4 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 11023번 더하기 3 (0) | 2020.12.07 |
[Baekjoon/Python3] 11021번 A+B - 7 (0) | 2020.12.07 |
[Baekjoon/Python3] 11006번 남욱이의 닭장 (0) | 2020.12.07 |
[Baekjoon/Python3] 10998번 A×B (0) | 2020.12.07 |
Comments