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