import random import string n=int(input()) s='a' for _ in [0]*n: s=s[-1]+''.join([random.choice(string.ascii_lowercase) for _ in [0]*19]) print(s)