assignment-8

write a program to print rectangle of N rows and M columns (+)


        n=int(input())

        m=int(input())

        for i in range(n):

                print("+ "*m)

Comments