need python code Write a program that shall ask the user to enter width W and he
ID: 3889455 • Letter: N
Question
need python code
Write a program that shall ask the user to enter width W and height H as two integer numbers and display a rectangle of H rows and W columns made of the pound signs (“#”), as in the following example:
Enter rectangle height: 3 Enter rectangle width: 25
#########################
#########################
#########################
Your program shall not use loops, even if you know how to use them.