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