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