100 atcoder#ABC153A. [ABC153A] Serval vs Monster
[ABC153A] Serval vs Monster
Score : points
Problem Statement
Serval is fighting with a monster.
The health of the monster is .
In one attack, Serval can decrease the monster's health by . There is no other way to decrease the monster's health.
Serval wins when the monster's health becomes or below.
Find the number of attacks Serval needs to make before winning.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of attacks Serval needs to make before winning.
10 4
3
- After one attack, the monster's health will be .
- After two attacks, the monster's health will be .
- After three attacks, the monster's health will be .
Thus, Serval needs to make three attacks to win.
1 10000
1
10000 1
10000