Advertisement
ydpetkov

repainting

Jul 9th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. nylon = int(input())
  2. paint = int(input())
  3. thinner_lt = int(input())
  4. hours_workers = int(input())
  5.  
  6. nylon_price = (nylon + 2) * 1.5
  7. paint_price = (paint * 1.1) * 14.50
  8. thinner_lt_price = thinner_lt * 5
  9. total_sum = nylon_price + paint_price + thinner_lt_price + 0.4
  10. workers_sum = (total_sum * 0.30) * hours_workers
  11. total = total_sum + workers_sum
  12. print(total)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement