You are on page 1of 1

#Read input value

lenght= float (input("lenght of the room in meters: "))


width=float(input("lenght of the room in meters: "))

#compute are
area=lenght*width

print("the area of the room is: ",area,"square meters")

You might also like