Answer:
The program in Python is as follows:
Length = float(input("Length: "))
Width = float(input("Width: "))
Area = Length * Width
print("Area: ",Area)
Step-by-step explanation:
This gets input for length
Length = float(input("Length: "))
This gets input for width
Width = float(input("Width: "))
This calculates the area
Area = Length * Width
This prints the calculated area
print("Area: ",Area)