1100: 学生分数等级划分程序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:190 Solved:124

Description

输入一个学生的分数,自动划分该学生成绩所属的等级
成绩分级标准如下
分数 等级
score>=90 A
80<=score<90 B
70<=score<80 C
60<=score<70 D
score<60 E

Input

学生成绩score,0<=score<=100,最多包含小数点后1位数

Output

学生分数所属的等级

Sample Input Copy

99.5

Sample Output Copy

A

HINT

E