#include using namespace std; #include using namespace atcoder; using ll = long long; using mint = modint998244353; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string S; cin >> S >> S; string T = "UEC"; auto p = find(S.begin(), S.end(), 'c'); S.erase(S.begin(), p + 1); S.insert(S.begin(), T.begin(), T.end()); cout << S << endl; }