prints rectangle

 prints rectangle


    r=int(input())

    c=int(input())

    s=0

    while(s<r):

        print("* " * c)

        s+=1

Comments