#include using namespace std; const string res = "yukicoder"; int main(){ int n; while(cin >> n && n){ cout << res[n-1] << endl; } return 0; }