Answer:
In Python:
Length = float(input("Length: "))
Breadth = float(input("Breadth: "))
Area = Length * Breadth
Print(Area)
Step-by-step explanation:
Get values for length and breadth
Length = float(input("Length: "))
Breadth = float(input("Breadth: "))
Calculate area
Area = Length * Breadth
Print area
Print(Area)