Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- num_of_people = int(input())
- capacity = int(input())
- print(math.ceil(num_of_people / capacity))
- Тарикатско решение:)
- import math
- print(math.ceil(int(input()) / int(input())))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement