N = int(input()) for i in range(N): for j in range(i+1): print('*', end='') # 개행을 원치 않을 때 end=''을 추가한다. print('') # 마지막에는 개행을 해야한다.