Division - MarisaOJ: Marisa Online Judge

Division

Time limit: 1000 ms
Memory limit: 256 MB
Output the $k$-th digit after the decimal point in the division of $a$ by $b$. ### Input - A single line containing three integers $a, b, k$. ### Output -Print a single digit that satisfies the condition. ### Constraints - $1 \le a, b, k \le 10^5$. ### Sample test ``` 22 7 5 ``` Output: ``` 5 ```