📜  我们想估算粉刷房产的成本.内墙粉刷成本为每平方英尺 18 卢比.外墙粉刷费用为每平方英尺 12 卢比. - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:37.844000             🧑  作者: Mango

代码示例1
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")