Advertisement
aneliabogeva

FishLand

Apr 15th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. priceScumria = float(input())
  2. price_Caca = float(input())
  3.  
  4. quantity_Palamud = float(input())
  5. quantity_Safrid = float(input())
  6. quantity_Shells = float(input())
  7.  
  8. price_Palamu = priceScumria + (priceScumria*0.60)
  9. price_Safrid = price_Caca + (price_Caca*0.80)
  10.  
  11. totalMoney = (quantity_Palamud*price_Palamu)+(quantity_Safrid*price_Safrid)+(quantity_Shells*7.50)
  12.  
  13. print(f"{totalMoney:.2f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement