Agorithm/백준 알고리즘
백준 알고리즘 16504번 종이접기(python)
kimjinho1
2021. 3. 1. 11:59
728x90
반응형
단순 사칙연산 문제이다.
s = 0
for _ in range(int(input())):
s += sum(list(map(int, input().split())))
print(s)
728x90
반응형