width = int(input( "Enter a width:" )) height = int(input( "Enter a height:" )) print() print( "Here is your box:" ) row = ( "+" * width , ) print ( row*height)