2022214 - 打印星号

n = int(input()) for i in range(n):

print(i," " * i, "*" * (2 * (n - i) - 1), sep="")