Write a program that can print out a rectanlge of pound-signs (#) of various sizes. The program should accept two inputs, a recangle width and then a rectangle height. After getting the two inputs, the program should print out a blank line, and then a rectangle of the specified size. Two examples are shown below.
Rectangle width:
8
Rectangle height:
5
########
########
########
########
########
Rectangle width:
15
Rectangle height:
7
###############
###############
###############
###############
###############
###############
###############
Name the program prep3.py
.
Make sure that gradescope gives you the points for passing the test case(s).