height = int(input("Enter a height: ")) width = int(input("Enter a width: ")) count = 0 print("Here is your box:") while count < height : print("+ "*width) count = count + 1