Spocoman

Birthday Party

Jan 5th, 2022 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. rent = float(input())
  2.  
  3. cake = rent / 5
  4. drinks = cake * 0.55
  5. animator = rent / 3
  6.  
  7. print(rent + cake + drinks + animator)
Add Comment
Please, Sign In to add comment