Advertisement
Dimitar182

07. Food Delivery

Oct 30th, 2022
763
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. chicken_menu = int(input())
  2. fish_menu = int(input())
  3. vegetarian_menu = int(input())
  4. delivery = 2.5
  5.  
  6. chicken_menu_price = chicken_menu * 10.35
  7. fish_menu_price = fish_menu * 12.40
  8. vegetarian_menu_price = vegetarian_menu * 8.15
  9. total_menu_price = chicken_menu_price + fish_menu_price + vegetarian_menu_price
  10. desert = total_menu_price * 0.2
  11. total_price = total_menu_price + desert + delivery
  12. print(total_price)
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement