import math M = int(input()) if M == 0: print("kudamakitsukasa") else: # Check if M is a tetrahedral number low = 1 high = 2000000 # A sufficiently large upper bound found_k = -1 while low <= high: mid = (low + high) // 2 t = mid * (mid + 1) * (mid + 2) // 6 if t == M: found_k = mid break elif t < M: low = mid + 1 else: high = mid - 1 if found_k != -1: print("con" * found_k) else: # Find a, b, c such that a*b*c = M and a + b + c <= 60000 max_a = int(M ** (1/3)) + 2 found = False for a in range(max_a, 0, -1): if M % a != 0: continue quotient = M // a max_b = int(math.isqrt(quotient)) b = None for candidate_b in range(max_b, 0, -1): if quotient % candidate_b == 0: b = candidate_b break if b is None: continue c = quotient // b if a + b + c <= 60000: print('c' * a + 'o' * b + 'n' * c) found = True break if not found: # Fallback (should not happen as per problem statement) print('c' * 1 + 'o' * 1 + 'n' * M)