Run ID:116764

提交时间:2025-04-12 13:56:59

students = [] for _ in range(3): scores = list(map(int, input().split())) students.append(scores) for student in students: if any(score < 60 for score in student): print(' '.join(map(str, student)) + ' ')