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