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