Advertisement
ydpetkov

food_delivery

Jul 9th, 2022
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. chicken_menu_count = int(input())
  2. fush_menu_count = int(input())
  3. veg_menu_count = int(input())
  4.  
  5. chicken_price = chicken_menu_count * 10.35
  6. fish_price = fush_menu_count * 12.4
  7. veg_price = veg_menu_count * 8.15
  8. all_menu = chicken_price + fish_price + veg_price
  9. dessert = all_menu * 0.20
  10. total_sum = all_menu + dessert + 2.5
  11. print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement