#include int main(void){ char a,b[10]="yukicoder"; for(int i=0;i<10;i++){ if(getchar()=='?'){ printf("%c\n",b[i]); break; } } }