def solve(): n = int(input()) s = input().strip() idx = s.index("c") print("UEC" + s[idx+1:]) if __name__ == "__main__": solve()