length = float(input("Enter a value for length "))
width = float(input("Enter a value for width "))
areaOfRectangle = length * width
print("Area = ",areaOfRectangle)