#ABC153A. Serval vs Monster

Serval vs Monster

题目描述

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.

薮猫正在和一只怪物战斗。

怪物的 health 值是 HH

在一次攻击中,薮猫可以使怪物的生命值减少 AA 。没有其他方法可以降低怪物的生命值。

当怪物的生命值变为 00 或以下时,薮猫就获胜了。

找出薮猫在获胜前需要攻击的次数。

输入格式

输入内容按以下格式标准输入:

HH AA

输出格式

打印薮猫在获胜前需要发动的攻击次数。

样例 #1

样例输入 #1

10 4

样例输出 #1

3

样例 #2

样例输入 #2

1 10000

样例输出 #2

1

样例 #3

样例输入 #3

10000 1

样例输出 #3

10000

说明

数据规模与约定

  • 1H1041 \leq H \leq 10^4
  • 1A1041 \leq A \leq 10^4
  • 所有输入值均为整数。

样例 11 解释

  • 一次攻击后,怪物的生命值为 66
  • 两次攻击后,怪物的生命值为 22
  • 三次攻击后,怪物的生命值将为 2-2

因此,薮猫需要发动三次攻击才能获胜。