#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); string t = "yukicoder"; string s; cin >> s; for(int i=0;i<9;i++) { if(s[i]=='?') { cout << t[i] << '\n'; break; } } return 0; }