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