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