score = int(input("输入分数:")) if 0<=score < 60: print("不及格") elif score<70: print("及格") elif score<80: print("良好") elif score<=100: print("优秀")