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