while True: try: num = int(input()) for i in range(num): print(' ' * (num - i - 1) + '*') except: break