L = list(input()) M = list("yukicoder") ans = "none" for i in range(len(L)): if L[i] == '?': ans = M[i] break print(ans)