Advertisement
veronikaaa86

07. Food Delivery

Jul 2nd, 2023
878
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 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_menu = chicken_menu_count * 10.35
  6. price_fish_menu = fish_menu_count * 12.4
  7. price_vegi_menu = vegi_menu_count * 8.15
  8.  
  9. all_menu_sum = price_chicken_menu + price_fish_menu + price_vegi_menu
  10. dessert_price = all_menu_sum * 0.20
  11.  
  12. total_sum = all_menu_sum + dessert_price + 2.50
  13.  
  14. print(total_sum)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement