728x90
반응형

단순 정렬 문제이다.

for _ in range(int(input())):
    li = sorted(list(map(int, input().split())))
    print(li[-3])
728x90
반응형

+ Recent posts