*
**
***
****
*****

for i in range(1,19):
    for j in range(1,i+1):
        print('*'.format(i).expandtabs(23),end=' ')
    print()