Floor Plan Estimator
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
Input: `length` (number), `breadth` (number). Return: Number representing area.
Input: 5, 4
Output: 20
Run your code to see output