Advertisement
ydpetkov

Yard_Greening

Jul 7th, 2022 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. squere_meters = int(input())
  2. price = squere_meters * 7.61
  3. discount = price * 18 / 100
  4. print(f'The final price is {price - discount} lv.')
  5. print(f'The discount is {discount} lv.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement