solid rectangle 2

 solid rectangle 2

    m=int(input())

    n=int(input())

    while(m>0):

        print("+ "*n)

        m-=1

Comments