S = input() S_True = "yukicoder" for i in range(len(S)): if S[i] != S_True[i]: print(S_True[i]) break