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