This program is written to find area of a rectangle.
l = float(input("Lenght of rectangle:"))
b = float(input("Breadht of rectangle:"))
area = l*b
print ("Area of square = l*b")
print (" =",l,"*",b)
print (" =",area)
The input length is 12.4 and the input breadth is 13 So the answer must be 161.2 however the answer coming is 161.20000000000002 What's going wrong?