Run ID:86540
提交时间:2024-07-25 23:16:24
n=int(input()) print("*"*n) for x in range(n-2): print(" "*(n-2-x)+"*") print("*"*n)