#49472: 簡單理解


0801elmer666@gmail.com (薛冠志)


a = int(input())
for i in range(a):
for j in range(i+1):
if j != i:
print('*',end='')
else:
print('*')