S = input().rstrip() full = "yukicoder" for i in range(len(S)): if S[i] != full[i]: print(full[i]) else: pass