Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Първо решение:
- chickenMenu = int(input()) * 10.35
- fishMenu = int(input()) * 12.40
- vegetarianMenu = int(input()) * 8.15
- print((chickenMenu + fishMenu + vegetarianMenu) * 1.2 + 2.5)
- Тарикатско:)
- print((int(input()) * 10.35 + int(input()) * 12.40 + int(input()) * 8.15) * 1.2 + 2.5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement