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