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
- MySQL
- HackCTF
- xcz.kr
- 정렬
- 써니나타스
- Database
- 인코그니토
- 백준
- Forensics
- C
- Web
- CTF
- Web Hacking
- Digital Forensics
- php
- 사칙연산
- N0Named
- Python
- SuNiNaTas
- Text
- Incognito
- 문자열
- cryptography
- wargame
- 구현
- 수학
- misc
- writeup
- 그리디 알고리즘
- Network
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 14918번 더하기 본문
[Baekjoon/Python3] 14918번 더하기
import sys
a, b = map(int, sys.stdin.readline().split())
print(a + b)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 15439번 Vera and Outfits (0) | 2020.12.08 |
---|---|
[Baekjoon/Python3] 14928번 큰 수 (BIG) (0) | 2020.12.08 |
[Baekjoon/Python3] 14916번 거스름돈 (0) | 2020.12.08 |
[Baekjoon/Python3] 14914번 사과와 바나나 나눠주기 (0) | 2020.12.08 |
[Baekjoon/Python3] 14912번 숫자 빈도수 (0) | 2020.12.08 |
Comments