Advertisement
Spocoman

Series Calculator

Mar 15th, 2022
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. serial = input()
  2. season = int(input())
  3. volume = int(input())
  4. time = float(input())
  5.  
  6. minutes = season * volume * time * 1.2 + season * 10
  7. print(f"Total time needed to watch the {serial} series is {int(minutes)} minutes.")
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement