#include using namespace std; int main(){ char c;cin>>c; if(c == 'E' || c == 'B'){ cout << (char)(c+1); }else{ cout << c << "#" << endl; } }