S=list(input()) A=list('yukicoder') n=len(S) for i in range(n): if(S[i]=='?'): print(A[i]) break