n = int(input()) s = input() for i in range(n): if s[i] == 'c': print("UEC" + s[i+1:]) break