#include using namespace std; int main(){ string s,t="yukicoder"; cin >> s; int i=0; while(s[i]!='?'){ i++; } cout << t[i] << endl; return 0; }