n = int( input( "Enter a number" ) ) n2= n while n2 > 0 : print( "+ " * n ) n2 = n2 - 1