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
- writeup
- C
- 문자열
- xcz.kr
- CTF
- MySQL
- misc
- 그리디 알고리즘
- 구현
- Network
- cryptography
- HackCTF
- 수학
- 백준
- 정렬
- 써니나타스
- Python
- SuNiNaTas
- Incognito
- Database
- php
- Text
- N0Named
- 사칙연산
- wargame
- Web
- Digital Forensics
- 인코그니토
- Web Hacking
- Forensics
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 15552번 빠른 A+B 본문
[Baekjoon/Python3] 15552번 빠른 A+B
import sys
T = int(input())
for i in range(T):
A, B = map(int, sys.stdin.readline().split())
print(A + B)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 15680번 연세대학교 (0) | 2020.12.08 |
---|---|
[Baekjoon/Python3] 15596번 정수 N개의 합 (0) | 2020.12.08 |
[Baekjoon/Python3] 15439번 Vera and Outfits (0) | 2020.12.08 |
[Baekjoon/Python3] 14928번 큰 수 (BIG) (0) | 2020.12.08 |
[Baekjoon/Python3] 14918번 더하기 (0) | 2020.12.08 |
Comments