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