Cometin'

BOJ-10822 - Python

2020-10-12 at Algorithm category

쉼표로 나누어져 있는 정수들로 이루어진 문자열의 총합을 구하는 문제. split(',')과 sum을 이용하여 풀었다.

print(sum(map(int,input().split(','))))

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.