length = float(input("Enter length of the rectangle : "))
breadth= float(input("Enter bradth of the rectangle : "))
area = length + breadth
print("Rectangle specifications ")
print("Length = ", length, end = '')
print("breadth = ",breadth)
print("Area = ", area)