파이썬/백준
5522번 : 카드 게임
L_SU
2022. 6. 12. 00:31
# 카드 게임
h = 0
for _ in range(5):
s = int(input())
h += s
print(h)