Advertisement
veronikaaa86

04. Vacation books list

May 8th, 2022
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. total_count_pages = int(input())
  2. pages_hour = int(input())
  3. days = int(input())
  4.  
  5. total_hours = total_count_pages // pages_hour
  6. hours_per_day = total_hours // days
  7.  
  8. print(hours_per_day)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement