n=int(input())
if n%2==0 or n<=0:
print("Invalid Input")
else:
for i in range(n, 0, -2):
print("*"*i)