Horje
We want to estimate the cost of painting a property. Interior wall painting cost is Rs.18 per sq.ft. and exterior wall painting cost is Rs.12 per sq.ft. Code Example
We want to estimate the cost of painting a property. Interior wall painting cost is Rs.18 per sq.ft. and exterior wall painting cost is Rs.12 per sq.ft.
intr = int(input())
extr = int(input())


i_l=[float(input()) for _ in range(intr)]
e_l=[float(input()) for _ in range(extr)]

cost = (sum(i_l) * 18) + (sum(e_l) * 12)
print(cost," INR")




Python

Related
what hormone causes the feeling of love Code Example what hormone causes the feeling of love Code Example
generate jwt token just passing userid in rest_framework_simplejwt Code Example generate jwt token just passing userid in rest_framework_simplejwt Code Example
how to find the frequency of a wave python Code Example how to find the frequency of a wave python Code Example
pandas get higher value of column Code Example pandas get higher value of column Code Example
env\Scripts\activate.ps1 : File Code Example env\Scripts\activate.ps1 : File Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7