import sys input=lambda: sys.stdin.readline().rstrip() S=input() T="yukicoder" for i in range(9): if S[i]=="?": print(T[i]) break