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