Floor Plan Estimator

Easy
#math #geometry

Input: `length` (number), `breadth` (number). Return: Number representing area.

Example

Input: 5, 4
Output: 20
Need a hint?
  • Area is length multiplied by breadth
Run your code to see output