题解 | #淘汰排名最后的学生#
淘汰排名最后的学生
https://www.nowcoder.com/practice/d7cc81fa615c4231b5f86c97e5b275b4
name = input()
grade_list =name.split()
for i in range(3):
grade_list.pop()
print(grade_list)
grade_list =name.split()
for i in range(3):
grade_list.pop()
print(grade_list)