write a program to find perimeter of a rectangle

 write a program to find perimeter of a rectangle


    a=int(input())

    b=int(input())

    print(2*(a+b))

Comments