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