Area of a Room

l=float(input()) b=float(input()) a=l*b print('The area of the room is %.2f square feet' %a)

Comments