student=[] max_score=0 max_index=0 min_index=0 min_score=100 for i in range(n) : name,xuehao,score=input().split()#并行输入 student.extend([name,xuehao,int(score)])#将一次输入的数据添加到列表里 for i in range(2,len(student),3) :#数据处理,找出最大值和最小值及其他们的下标 if student[i] > max_score : max_score=student[i] max_index=i if student[i] < min_score : min_score=student[i] min_index=i print(student[max_index-2],student[max_index-1])#打印最大值的信息 print(student[min_index-2],student[min_index-1])#打印最小值的信息