ํ์ด
ํ์ด์ฌ ๊ธฐ๋ณธ๋ฌธ๋ฒ๋ง ํ์ฉํ๋ฉด ์ฝ๊ฒ ํด๊ฒฐํ ์ ์๋ ๋ฌธ์ ์ด๋ค.
์ฃผ์ด์ง ๋ฐฐ์ด์ ๋ด๋ฆผ์ฐจ์์ผ๋ก ์ ๋ ฌ ํ 3๋ฒ์งธ ์๋ฆฌ์ ์๋ ์ซ์๋ฅผ ์ถ๋ ฅํ๋ฉด๋๋ค.
์์ค์ฝ๋
import sys
input = sys.stdin.readline
t = int(input())
for _ in range(t):
a = sorted(list(map(int, input().split())), reverse=True)
print(a[2])