提交时间:2026-04-22 19:49:08
运行 ID: 318283
n = int(input()) space = 0 for i in range(n): print(" " * space + "*" * (n - i)) space = space + 1