#include using namespace std; const string Y = "0yukicoder"; int main() { int n; while(cin >> n) { if(n == 0) { break; } cout << Y.at(n) << endl; } return 0; }