N = input() n = N base = "a" + "xy"*(998/2) + "x" +"b" ans = "" a = n/1001 b = n%1001 ans += base*a c = b/3 d = b%3 print ans + "fgh"*c + "kl"[:d]