본문 바로가기
백준문제/브론즈 4

백준) 5596번 - python

by kiseno 2024. 4. 2.
728x90
반응형
SMALL
grade1, grade2 = list(map(int, input().split())), list(map(int, input().split()))
print(sum(grade1) if sum(grade1) >= sum(grade2) else sum(grade2))
728x90
반응형
LIST

'백준문제 > 브론즈 4' 카테고리의 다른 글

백준) 6749번 - python  (0) 2024.04.03
백준) 5717번 - python  (0) 2024.04.02
백준) 9316번 - python  (0) 2024.04.01
백준) 10987번 - python  (0) 2024.03.31
백준) 5543번 - python  (0) 2024.03.30