본문 바로가기
📚 Algorithm

[Python] 백준 5596번 시험 점수

by 뿌맘 2021. 6. 24.
반응형

https://www.acmicpc.net/problem/5596

 

5596번: 시험 점수

대한고등학교에 재학 중인 민국이와 만세는 4과목(정보, 수학, 과학, 영어)에 대한 시험을 봤다. 민국이와 만세가 본 4과목의 점수를 입력하면, 민국이의 총점 S와 만세의 총점 T 중에서 큰 점수

www.acmicpc.net

a = sum(map(int,input().split()))
b = sum(map(int,input().split()))
print(max(a,b))
반응형

댓글