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