Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- name_serial = (input())
- duration_episode = int(input())
- duration_break = int(input())
- lunch_time = duration_break / 8
- break_time = duration_break / 4
- remaining_time = duration_break - lunch_time - break_time
- diff = abs(remaining_time - duration_episode)
- rounded = math.ceil(diff)
- if remaining_time >= duration_episode:
- print(f'You have enough time to watch {name_serial} and left with {rounded} minutes free time.')
- else:
- print(f"You don't have enough time to watch {name_serial}, you need {rounded} more minutes.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement