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