n = int(input()) 
a = 1
while a <= n:
    if a%2 == 0:
        print("*" * a)
    a += 1   