Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chicken_menu_count = int(input())
- fish_menu_count = int(input())
- vegi_menu_count = int(input())
- price_chicken = chicken_menu_count * 10.35
- price_fish = fish_menu_count * 12.4
- price_vegi = vegi_menu_count * 8.15
- all_price_menu = price_chicken + price_fish + price_vegi
- dessert_price = all_price_menu * 0.20
- total_sum = all_price_menu + dessert_price + 2.5
- print(f"{total_sum:.2f}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement