1116 - 成绩等级
Time Limit : 1 秒
Memory Limit : 128 MB
输出一个整数s,表示成绩,输出对应的等级。90≤s≤100为A,80≤s< 90为B,70≤s< 80为C,60≤s< 70为D,0≤s< 60为E。
Input
一个整数,表示成绩,范围在0~100.
Output
一个字母,分别表示成绩对应的等级。
Examples
Input
86
Output
B
Input
90
Output
A
Source
入门教程