-코드
a = list(map(int, input().split()))
b = list(map(int, input().split()))
if sum(a) > sum(b):
print("Gunnar")
elif sum(a) < sum(b):
print("Emma")
else:
print("Tie")
이해를 이상하게 해서 몇 번 다시 풀었습니다....
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]20944번 Automated Checking Machine (0) | 2021.04.26 |
---|---|
[백준/파이썬]17945번 통학의 신 (0) | 2021.04.26 |
[프로그래머스/파이썬] 같은 숫자는 싫어 (0) | 2021.04.25 |
[프로그래머스/파이썬] 체육복 (0) | 2021.04.25 |
[백준/파이썬]20944번 팰린드롬 척화비 (0) | 2021.04.25 |