/*
2022年4月12日16点32分
程序作用:根据分数,反馈等级。90~100分为A,60~89为B,60以下为C。
*/

#include <iostream>
using namespace std;

int main()
{
    int score;
    cin >> score;
    if (score < 0 || score > 100) cout << "分数输入错误" << endl;
    else if (score >= 90) cout << "A" << endl;
    else if (score >= 60 && score < 90) cout << "B" << endl;
    else cout << "C" << endl;
    return 0;
}