Test Drive

Problem Statement

A car drives n kilometers per day. How many days are needed to cover a distance of m kilometers?

Input

Two natural numbers n and m (≤ 10000).

Output

Print the answer without using if or loops.

Example

[{'input': '700\n750', 'output': '2'}, {'input': '700\n2100', 'output': '3'}]