baekjoon 20260219

This commit is contained in:
songyc macbook 2026-02-19 22:36:04 +09:00
parent e93a75abea
commit 6080e34d1f

View File

@ -0,0 +1,7 @@
ans = (0,0)
for n in range(5) :
s = sum(list(map(int, input().split())))
if ans[1] < s :
ans = (n+1, s)
print(*ans)