백준/Bronze 3

백준 2442 파이썬

bonschicken 2020. 12. 28. 09:20
728x90
n = int(input()) 

for i in range(n): 
    print(' '*(n-i-1)+'*'*(((i+1)*2)-1))