Advertisement
ydpetkov

vacation_books_list

Jul 8th, 2022
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. total_count_pages = int(input())
  2. pages_per_hour = int(input())
  3. total_days = int(input())
  4.  
  5. total_time_for_book = total_count_pages // pages_per_hour
  6. hour_per_days = total_time_for_book // total_days
  7. print(hour_per_days)
  8.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement