Question 5 : Property Painting


25 October 2020 - Slot 1

We want to estimate the cost of painting a property.
Interior wall painting cost is 18 per square feet and exterior wall painting cost is 12 per square feet.

Take input as:

1. Number of interior Walls
2. Number of exterior Walls
3. Surface Area of each Interior Wall in units of square feet.
4. Surface Area of each Exterior Wall in units of square feet.

If user enters zero as number of walls then skip Surface are values as User may dont want to paint the walls. Calcuate and display the total cost of painting the property.


Test Case 1

Input :
6
3
12.3
15.2
12.3
15.2
12.3
15.2
10.10
10.10
10.00

Output :
Total estimated Cost : 1847.4 INR

Note :

Follow input and output format as given in above example.