import sys input = sys.stdin.readline N = int(input()) S = input().strip() idx = S.index("c") ans = "UEC" + S[idx+1:] print(ans)