import sys input=lambda: sys.stdin.readline().rstrip() S="yukicoder" while True: n=int(input()) if n==0: break else: print(S[n-1])