python-algorithm

[백준] 10262

무적김두칠 2021. 3. 19. 15:40

1
2
3
4
5
6
7
tmp1=list(map(int,input().split()))
tmp2=list(map(int,input().split()))
a=sum(tmp1)
b=sum(tmp2)
if a>b : print("Gunnar")
elif a==b: print("Tie")
elseprint("Emma")
cs
반응형