Advertisement
veronikaaa86

07. Food Delivery

Sep 11th, 2022 (edited)
1,078
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. chicken_menu_count = int(input())
  2. fish_menu_count = int(input())
  3. vegi_menu_count = int(input())
  4.  
  5. price_chicken = chicken_menu_count * 10.35
  6. price_fish = fish_menu_count * 12.4
  7. price_vegi = vegi_menu_count * 8.15
  8.  
  9. all_price_menu = price_chicken + price_fish + price_vegi
  10. dessert_price = all_price_menu * 0.20
  11.  
  12. total_sum = all_price_menu + dessert_price + 2.5
  13.  
  14. print(f"{total_sum:.2f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement