Write a program to print a rectangle pattern of M rows and N columns using the characters as shown below.
+----------+
| |
| |
| |
+----------+
M = int(input())
N = int(input())
print("+"+N*"-"+"+")
for _ in range(M):
print("|"+N*" "+"|")
print("+"+N*"-"+"+")
Comments
Leave a comment