Sichanov

yard_greening

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