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