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