height = int(input("Enter the height: ") ) width = int(input("Enter the width: ") ) print("Here is the box") while height > 0: print("+" * width) height -= 1