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

[백준/파이썬] 16099번 Larger Sport Facility

by 현장 2022. 11. 12.

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