1977: 5375. 买苹果

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:38 Solved:32

Description

小明拿着 n 元钱去水果店买苹果。

每个苹果的售价是 x元。

请你计算,他最多可以买到多少个苹果。

Input

共一行,两个用空格隔开的整数 n 和 x

Output

一个整数,表示能够买到的最大苹果数量。

数据范围

前 3个测试点满足 1≤n,x≤10。
所有测试点满足 1≤n,x≤100。


Sample Input Copy

4 2

Sample Output Copy

2

Source/Category