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