Consider an infinite recurring decimal $$$\frac {1}{n}$$$, Where $$$n$$$ is a positive integer, $$$n$$$ is not a multiple of $$$2$$$ and $$$5$$$.For example:
$$$\frac{1}{3} = 0.3333......$$$
$$$\frac{1}{7}=0.1428......$$$
$$$n$$$, $$$m$$$ are given, calculate the $$$m$$$-th digit after decimal point of $$$\frac {1}{n}$$$.
First line contains two integers $$$n$$$, $$$m$$$ $$$($$$ $$$1 \le n\le 10^{5}, 1 \le m \le 10^{9}$$$ $$$)$$$, separated by space.
Output the $$$m$$$-th digit after decimal point of $$$\frac {1}{n}$$$.
3 5
3
233 23
5