#include using namespace std; int main(){ string str; cin >> str; if(str == "A"){ cout << "A#" <<"/n"<< endl; }else if (str == "B"){ cout << "C" << "/n" << endl; }else if (str == "C"){ cout << "C#" << "/n"<< endl; }else if (str == "E"){ cout << "F" << "/n"<< endl; }else if (str == "F"){ cout << "F#" << "/n"<< endl; }else if (str == "G"){ cout << "G#" << "/n" << endl; } }