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