100 atcoder#ABC153A. [ABC153A] Serval vs Monster

[ABC153A] Serval vs Monster

Score : 100100 points

Problem Statement

Serval is fighting with a monster.

The health of the monster is HH.

In one attack, Serval can decrease the monster's health by AA. There is no other way to decrease the monster's health.

Serval wins when the monster's health becomes 00 or below.

Find the number of attacks Serval needs to make before winning.

Constraints

  • 1H1041 \leq H \leq 10^4
  • 1A1041 \leq A \leq 10^4
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

HH AA

Output

Print the number of attacks Serval needs to make before winning.

10 4
3
  • After one attack, the monster's health will be 66.
  • After two attacks, the monster's health will be 22.
  • After three attacks, the monster's health will be 2-2.

Thus, Serval needs to make three attacks to win.

1 10000
1
10000 1
10000