100 atcoder#ABC186A. [ABC186A] Brick
[ABC186A] Brick
Score : points
Problem Statement
We have a truck, which can carry at most kilograms.
We will load bricks onto this truck, each of which weighs kilograms. At most how many bricks can be loaded?
Constraints
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print an integer representing the maximum number of bricks that can be loaded onto the truck.
10 3
3
Each brick weighs kilograms, so bricks weigh kilograms, and weigh kilograms.
Thus, we can load at most bricks onto the truck that can carry at most kilograms.
1000 1
1000