Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- people = int(input())
- capacity = int(input())
- turns = 0
- while True:
- people -= capacity
- turns += 1
- if people <= 0:
- break
- print(turns)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement