Advertisement
webbersof

Landscaping

Jan 7th, 2023
964
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. square_meters_for_landscaping = float(input())
  2. price_for_landscaping = square_meters_for_landscaping * 7.61
  3. discount = price_for_landscaping * 0.18
  4. final_price = price_for_landscaping - discount
  5.  
  6. print(f"The final price is: {final_price} lv.")
  7. print(f"The discount is: {discount} lv.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement