S = input() Y = "yukicoder" for s, y in zip(S, Y): if s != y: print(y) break