5 lines
78 B
Python
5 lines
78 B
Python
n=int(input())
|
|
|
|
for i in range(1,n+1):
|
|
print("".rjust((n-i)," ")+("*"*i))
|