Advertisement
veronikaaa86

09. Yard Greening

Jan 8th, 2022
623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. square_meters = float(input())
  2.  
  3. price = square_meters * 7.61
  4. discount = price * 0.18
  5. price_with_discount = price - discount
  6.  
  7. print(f'The final price is: {price_with_discount} lv.')
  8. print(f'The discount is: {discount} lv.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement