Advertisement
HristoBaychev

Pet Shop

Jan 22nd, 2023
605
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. pack_food_dog = float(input())
  2. pack_food_cat = float(input())
  3.  
  4. priceOfPackDog = 2.50
  5. priceOfPackCat = 4
  6.  
  7. finalPriceDog = pack_food_dog * priceOfPackDog
  8. finalPriceCat = pack_food_cat * priceOfPackCat
  9.  
  10. totalPrice = finalPriceCat + finalPriceDog
  11.  
  12. print(f'{totalPrice} lv.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement