From 6080e34d1fe980fd624e05000eb118c89d1158dd Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Thu, 19 Feb 2026 22:36:04 +0900 Subject: [PATCH] baekjoon 20260219 --- code_study/Baekjoon/python/2953.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code_study/Baekjoon/python/2953.py diff --git a/code_study/Baekjoon/python/2953.py b/code_study/Baekjoon/python/2953.py new file mode 100644 index 0000000..10df646 --- /dev/null +++ b/code_study/Baekjoon/python/2953.py @@ -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) \ No newline at end of file