-Code
for _ in range(int(input())):
lt, wt, le, we = map(int, input().split())
if lt * wt < le * we:
print("Eurecom")
elif lt * wt > le * we:
print("TelecomParisTech")
else:
print("Tie")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 12351번 Hedgemony (Small) (0) | 2022.11.14 |
---|---|
[백준/파이썬] 9635번 Balloons Colors (0) | 2022.11.13 |
[백준/파이썬] 9838번 XMAS (0) | 2022.11.11 |
[백준/파이썬] 21420번 Монетки (0) | 2022.11.10 |
[백준/파이썬] 17598번 Animal King Election (0) | 2022.11.09 |