Advertisement
veronikaaa86

04. Vacation books list

Jul 2nd, 2023
794
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. total_pages_count = int(input())
  2. pages_per_hour = int(input())
  3. days = int(input())
  4.  
  5. total_hours = total_pages_count // pages_per_hour
  6. hour_per_day = total_hours // days
  7.  
  8. print(hour_per_day)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement