python code for if length and breadth are equal prints square else prints rectangle

 python code for if length and breadth are equal prints square else prints rectangle


    l = int(input())

    b = int(input())

    if(l==b):

        print("Square")

    else:

        print("Rectangle")

Comments