Advertisement
exDotaPro

20_april_2019_1_easter_lunch

Jan 5th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. easter_bread = int(input())
  2. bark_eggs = int(input())
  3. kg_cookies = int(input())
  4.  
  5. easter_bread_price = easter_bread * 3.20
  6. bark_eggs_price = bark_eggs * 4.35
  7. cookies_price = kg_cookies * 5.40
  8. egg_paint_price = bark_eggs * 12 * 0.15
  9.  
  10. total = easter_bread_price + bark_eggs_price + cookies_price + egg_paint_price
  11.  
  12. print(f'{total:.2f}')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement