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
- HackCTF
- Forensics
- Digital Forensics
- 인코그니토
- Web
- Incognito
- wargame
- C
- Web Hacking
- Text
- 정렬
- xcz.kr
- Python
- N0Named
- cryptography
- 그리디 알고리즘
- Database
- MySQL
- 써니나타스
- SuNiNaTas
- php
- 사칙연산
- CTF
- 구현
- writeup
- misc
- Network
- 백준
- 수학
- 문자열
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10823번 더하기 2 본문
[Baekjoon/Python3] 10823번 더하기 2
s = ''
tot = 0
while True:
try:
s += input()
except EOFError:
break
s = s.split(',')
for i in s:
tot += int(i)
print(tot)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10833번 사과 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10824번 네 수 (0) | 2020.12.06 |
[Baekjoon/Python3] 10822번 더하기 (0) | 2020.12.06 |
[Baekjoon/Python3] 10820번 문자열 분석 (0) | 2020.12.06 |
[Baekjoon/Python3] 10818번 최소, 최대 (0) | 2020.12.06 |
Comments