width= int(input("Enter a width: ")) height= int(input("Enter a height: ")) result = width*" + " height2= height + width for height in range(width, height2,): print(result)