S = input().strip() txt = 'yukicoder' for x, y in zip(S, txt): if x != y: print(y) break