#include <iostream> using namespace std; int main(){ string Y = "yukicoder"; string S; cin>>S; for(int i=0;i<S.size();i++){ if(S[i]!=Y[i]){ cout<<Y[i]<<endl; return 0; } } }