Advertisement
ydpetkov

fishland

Jul 14th, 2022
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. mackerel_price_1kg = float(input())
  2. sprinkle_price_1kg = float(input())
  3. bonito_count_kg = float(input())
  4. safrid_count_kg = float(input())
  5. mussles_count_kg = int(input())
  6.  
  7.  
  8. bonito_price = (mackerel_price_1kg * 0.60) + mackerel_price_1kg
  9. bonito_total_sum = bonito_count_kg * bonito_price
  10. safrid_price_kg = (sprinkle_price_1kg * 0.8) + sprinkle_price_1kg
  11. safrid_total_sum = safrid_count_kg * safrid_price_kg
  12. mussles_price = 7.50
  13. mussles_total_sum = mussles_count_kg * 7.50
  14. total_sum = (bonito_total_sum + safrid_total_sum + mussles_total_sum)
  15. print(f'{total_sum:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement