height = int(input("enter a height ")) width = int(input("enter a width ")) for multiplier in range(height) : result = multiplier * width print("+ " * width)