def f(N,A): if N<=1:return 'z'*N m=int((N+1/4)**0.5-0.5) return A[0:2]*m+f(N-m*(m+1),A[2:]) print(f(int(input()),'abcdefghijklmnopqrstuvwxyz'))