while True: try: n = int(input()) for i in range(1,n+1): k = n - i print(' '*k,end='') print('* '*(i - 1),end='') print('*') except EOFError: break