보안을 그리다, 훈이

[Baekjoon/Python3] 10822번 더하기 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10822번 더하기

HooNeee 2020. 12. 6. 18:19

[Baekjoon/Python3] 10822번 더하기

 

www.acmicpc.net/problem/10822

 

10822번: 더하기

첫째 줄에 문자열 S가 주어진다. S의 길이는 최대 100이다. 포함되어있는 정수는 1,000,000보다 작거나 같은 자연수이다.

www.acmicpc.net

 

s = input().split(',')
t = 0
for i in range(len(s)):
    t += int(s[i])
print(t)
Comments