#include using namespace std; int main(){ char S; cin >> S; if(S == 'E') cout << 'F'; else if(S == 'B') cout << 'C'; else cout << S << '#'; }