문제 출처 : sw expert academy
<문제> #++++ +#+++ ++#++ +++#+ ++++#
출력하기
<풀이>
for i in range(1,6): print('+'*(i-1)+'#'+'+'*(5-i))