#include #include using namespace std; int main(){ string S; cin >> S; for(int i = 0; i < 9; i++){ if(S[i] == '?'){ cout << "yukicoder"[i] << endl; return 0; } } }