n = int(input()) s = input() ans = "UEC" fl = False for a in s: if fl: ans += a if a == "c": fl = True print(ans)