import std.algorithm, std.conv, std.range, std.stdio, std.string; const a = "yukicoder"; version(unittest) {} else void main() { while (true) { auto s = readln.chomp.to!int; if (s == 0) break; writeln(a[(s - 1) % a.length]); } }