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