Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- nylon = int(input())
- paint = int(input())
- thinner = int(input())
- hours = int(input())
- materials_price = (nylon + 2) * 1.50 + paint * 14.50 * 1.1 + thinner * 5 + 0.40
- workers_price = materials_price * hours * 0.30
- total = materials_price + workers_price
- print(total)
- Тарикатско решение:)
- material_price = (int(input()) + 2) * 1.5 + int(input()) * 14.5 * 1.1 + int(input()) * 5 + 0.4
- workers_price = material_price * 0.3 * int(input())
- print(material_price + workers_price)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement