#include #include using namespace std; int main() { string s,x = "yukicoder"; cin >> s; int i; for(i = 0; i < s.length(); i++) if(s[i] == '?') break; cout << x[i] << endl; return 0; }