n = int(input()) 
while n > 0:
    if n%2 == 1:
        print("*" * n)
    n -= 1   