Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mackerel_price = float(input())
- sprat_price = float(input())
- bonito_fish_kg = float(input())
- saffron_kg = float(input())
- shellKg = float(input())
- bonito_fish_sum = bonito_fish_kg * mackerel_price * 1.60
- saffron_sum = saffron_kg * sprat_price * 1.80
- shell_sum = shellKg * 7.50
- total_sum = bonito_fish_sum + saffron_sum + shell_sum
- print(f"{total_sum:.2f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement