Advertisement
GalinaKG

Untitled

Apr 14th, 2022
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. count_pages = int(input())
  2. pages_read_for_hour = int(input())
  3. count_days = int(input())
  4. hours_for_read = count_pages / pages_read_for_hour
  5. hours_per_day = hours_for_read / count_days
  6.  
  7. print(round(hours_per_day))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement