Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- total_count_pages = int(input())
- pages_per_hour = int(input())
- total_days = int(input())
- total_time_for_book = total_count_pages // pages_per_hour
- hour_per_days = total_time_for_book // total_days
- print(hour_per_days)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement