5 lines
89 B
Python
5 lines
89 B
Python
N = int(input())
|
|
str = ""
|
|
for i in range(1,N+1) :
|
|
str = str + "*"*i + "\n"
|
|
print(str) |