07 Write code in obarice
z
7. Write a program
to find the area
of rectangle.
Answers
Answered by
2
l, w = [float(n) for n in input("enter l & w: ").split()]
print(f"area: {l * w}")
Similar questions