Programming/백준
[백준] 2439 - 별찍기 -2 (파이썬)
pental
2020. 4. 2. 00:33
a = int(input())
for i in range(1,a+1):
print(" "*(a-i) + "*"*i)