Given leaves and each person can rake at most
leaves each, find the minimum number of people needed to rake all the leaves.
Input Specification
The first line of input will contain an integer , the total number of leaves.
The second line of input will contain an integer , the number of leaves each person can rake.
Output Specification
Output one integer, representing the minimum number of people needed to rake all the leaves.
Sample Input
20
6
Sample Output
4
Sample Explanation
people would not be enough because they can only rake
leaves, so you need
people to rake all
leaves.
Comments