Advertisement
ydpetkov

lunch_break

Jul 16th, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. import math
  2. name_serial = (input())
  3. duration_episode = int(input())
  4. duration_break = int(input())
  5.  
  6. lunch_time = duration_break / 8
  7. break_time = duration_break / 4
  8.  
  9. remaining_time = duration_break - lunch_time - break_time
  10.  
  11. diff = abs(remaining_time - duration_episode)
  12. rounded = math.ceil(diff)
  13.  
  14. if remaining_time >= duration_episode:
  15. print(f'You have enough time to watch {name_serial} and left with {rounded} minutes free time.')
  16. else:
  17. print(f"You don't have enough time to watch {name_serial}, you need {rounded} more minutes.")
  18.  
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement