Advertisement
ydpetkov

supplies_for_school

Jul 8th, 2022
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. pen_count = int(input())
  2. marker_count = int(input())
  3. detergent_lt = int(input())
  4. discount_percent = int(input())
  5.  
  6. price_packege_pen = pen_count * 5.8
  7. price_packege_marker = marker_count * 7.2
  8. price_detergent = detergent_lt * 1.2
  9. price_all_materials = price_packege_pen + price_packege_marker + price_detergent
  10. discount = price_all_materials * discount_percent / 100
  11. total_price = price_all_materials - discount
  12. print(total_price)
  13.  
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement