Run ID:85729
提交时间:2024-07-20 09:22:36
students = [] for i in range(50): students.append(list(map(int,input().split()))) for j in students: if j[1] >= 80: print(j[0],j[1])