2025-05-16 18:45:20 +09:00

3 lines
65 B
Python

n = int(input())+1
for i in range(1,n):
print(" "*(n-i-1)+"*"*i)