Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- name = input()
- seasons = int(input())
- epizods = int(input())
- epizod_time = float(input())
- extra_time = seasons * 10
- epizods_time = seasons * epizods * epizod_time * 1.2
- time = extra_time + epizods_time
- print(f"Total time needed to watch the {name} series is {math.floor(time)} minutes.")
Advertisement
Add Comment
Please, Sign In to add comment