#include <iostream>
using namespace std;
int main() {
   char c = 'A' + 1;
cout << c;

    return 0;
}