#include using namespace std; int main(){ int n; string s; cin >> n >> s; bool ok = false; for(int i = 0; i < s.size(); i++){ if(ok)cout << s[i]; if(s[i] == 'c'){ cout << "UEC"; ok = true; } } cout << endl; return 0; }