Sichanov

3332

Jan 12th, 2021
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. party_room = int(input())
  2. cake_price = party_room * 20 / 100
  3. discount= cake_price * 45 /100
  4. drinks_price = cake_price - discount
  5. clown = party_room / 3
  6. sum = party_room + cake_price + drinks_price + clown
  7. print(sum)
Advertisement
Add Comment
Please, Sign In to add comment