N = int(input())

for i in range(0, N, 1):
    print("*"*(i+1))
for x in range(N-1, 0, -1):
    print("*"*(x))

+ Recent posts