A car drives n kilometers per day. How many days are needed to cover a distance of m kilometers?
Two natural numbers n and m (≤ 10000).
Print the answer without using if or loops.
[{'input': '700\n750', 'output': '2'}, {'input': '700\n2100', 'output': '3'}]