Advertisement
desislava_topuzakova

07. Yard Greening

Apr 12th, 2020
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. # кв.метри, които трябва да озеленим
  2. # общо цена за озеленяване = кв. метри * 7.61
  3. # отстъпка = общо цена за озеленяване * 0.18 (18%)
  4. # принт
  5.  
  6. square_meters_for_greening = float(input())
  7. total_price = square_meters_for_greening * 7.61
  8. discount = total_price * 0.18
  9. final_price = total_price - discount
  10.  
  11. print(f'The final price is: {final_price:.2f} lv.')
  12. print(f'The discount is: {discount:.2f} lv.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement