Advertisement
Spocoman

07. Food Delivery

Dec 1st, 2021
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. Първо решение:
  2.  
  3. chickenMenu = int(input()) * 10.35
  4. fishMenu = int(input()) * 12.40
  5. vegetarianMenu = int(input()) * 8.15
  6.  
  7. print((chickenMenu + fishMenu + vegetarianMenu) * 1.2 + 2.5)
  8.  
  9.  
  10.  
  11. Тарикатско:)
  12.  
  13. print((int(input()) * 10.35 + int(input()) * 12.40 + int(input()) * 8.15) * 1.2 + 2.5)
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement