s = input() ans = 'yukicoder' for (c1, c2) in zip(s, ans): if c1 == '?': print(c2) break