Advertisement
Guest User

08. Yard Greening

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