a=int(input())
for j in range(1,a+1):
    for i in range(1,j+1):
        print("*",end="")
    print()