# your code goes here
n=5
for i in range(1,n+1):
    for j in range(1,i+(i)+1):
        print("*",end="")
    print()