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