Answer:
height = int(input("Enter the arrow base height: "))
width = int(input("Enter the arrow base width: "))
# Draw rectangle
for i in range(height):
for j in range(width):
print('*', end='')
print()
Output:
For the input 6 and 4, the output would be:
****
****
****
****
****
****