#include #include int main(){ char str1[] = "yukicoder"; char str2[10]; int i; scanf("%s", str2); for(i = 0; i < 9; i++){ if(str2[i] == '?'){ printf("%c\n", str1[i]); break; } } return 0; }