s = input() word = "yukicoder" ans = "" for e1, e2 in zip(s, word): if e1 == "?": ans = e2 print(ans)