#include int main(){ int i=0; char s[10],key[10]="yukicoder"; scanf("%s",s); while(1){ if(s[i]=='?'){ printf("%c",key[i]); break; } i++; } }