# coding:utf-8 s = input() l = list(s) a = "yukicoder" ans = list(a) for i in range(len(l)): if l[i] == '?': print(ans[i])