bl00dt3ars

01. Excursion

Nov 22nd, 2020 (edited)
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. people = int(input())
  2. nights = int(input()) * people * 20
  3. cards = int(input()) * people * 1.6
  4. tickets = int(input()) * people * 6
  5.  
  6. total = (nights + cards + tickets) * 1.25
  7. print(f"{total:.2f}")
Add Comment
Please, Sign In to add comment