S = input() correct = "yukicoder" for w,c in zip(S,correct): if w != c: print(c) break