#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(ll i=0;i> N >> S; string t; REP(j,N){ if(S[j]=='c'){ t=S.substr(j+1); break; } } string x="UEC"; cout << x+t << endl; return 0; }