Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- days = int(input())
- cookers = int(input())
- cakes = int(input()) * 45
- waffle = int(input()) * 5.80
- pancakes = int(input()) * 3.20
- total = days * (cookers * (cakes + waffle + pancakes))
- print(total - total / 8)
- Тарикатско решение :)))
- total = int(input()) * (int(input()) * (int(input()) * 45) + (int(input()) * 5.80) + (int(input()) * 3.20))
- print(total - total / 8)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement