Run ID:116763

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

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