Given the number of rows and the number of columns, write nested loops to print a rectangle. (PYTHON)
Given the number of rows and the number of columns; write nested loops to print a rectangle.
Sample output with inputs: 2 3
City Tree
int(input("Enter number of rows: "))
int(input("Enter number of columns: "))
Your solution goes here
print('#', end='')