n=int(input())
i=0
star=1
while i<n:
    j=0
    while j<star:
        print('*',end='')
        j+=1
    star+=1
    print()
    i+=1