eolymp
bolt
Try our new interface for solving problems

Coins

You have an infinite number of coins in denominations from 1 to n. You want to select some set of coins with the sum s. It is allowed to have coins with the same denomination in the set. What is the minimum number of coins you need to take to get the amount of s.

Input

Two integers n and s (1n105, 1s109).

Output

Print the minimum number of coins required to take the amount s.

Time limit 1 second
Memory limit 128 MiB
Input example #1
5 11
Output example #1
3
Input example #2
6 16
Output example #2
3