n=int(input()) for i in range(1,n+1): print('{}{}'.format(' '*(n-i),'*'*i))
이전 문제에서 더 발전된 문제, format함수를 사용하여 출력해준다.