1. Problem 문제 확인하기 2. Solution n = int(input()) for i in range(n): number = list(map(int, input().split())) number.sort() print(number[-3])