728x90
import sys
t = int(sys.stdin.readline())
for _ in range(t):
number = list(map(int, sys.stdin.readline().split()))
number.sort(reverse=True)
print(number[2])
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 5586 파이썬(python) : JOI와 IOI (0) | 2022.09.09 |
---|---|
[백준] 1652 파이썬(python) : 누울 자리를 찾아라 - (★) (0) | 2022.09.07 |
[백준] 10867 파이썬(python) : 중복 빼고 정렬하기 - (★) (0) | 2022.09.05 |
[백준] 1743 파이썬(python) : 음식물 피하기 (0) | 2022.09.03 |
[백준] 11004 파이썬(python) : K번째 수 (0) | 2022.09.02 |