[문제]

 

 

[내 코드]

 

for _ in range(int(input())):
    arr = [int(i) for i in input().split()]
    print(sorted(arr)[-3])

 

 

복사했습니다!