본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]10262번 주사위 게임

by 현장 2021. 4. 26.

-코드

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")

이해를 이상하게 해서 몇 번 다시 풀었습니다....