Write down all positive integers in ascending order in a row like this: `1234567891011121314...`.
What is the $k^{th}$ digit?
### Input
- The first line an integer $k$.
### Output
- Print the $k^{th}$ digit.
### Constraints
- $1 \le k \le 10^{18}$.
### Example
Input:
```
14
```
Output:
```
1
```