본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 20494번 스시

by 현장 2023. 4. 21.

-Code

res = 0
for _ in range(int(input())):
    s = input()
    res += len(s)
print(res)