N = int(input()) S = input() print("UEC",end = "") for i in range(N): if S[i] == "c": for j in range(i+1,N): print(S[j],end = "") break print()