if语句判断用户输入成绩后属于那个级别
score = int (input("score:"))
if score >90:
print("A")
elif score>60:
print("B")
else:
print("C")