{"raw_statement":[{"iden":"problem statement","content":"Mr. Infinity has a string $S$ consisting of digits from `1` to `9`. Each time the date changes, this string changes as follows:\n\n*   Each occurrence of `2` in $S$ is replaced with `22`. Similarly, each `3` becomes `333`, `4` becomes `4444`, `5` becomes `55555`, `6` becomes `666666`, `7` becomes `7777777`, `8` becomes `88888888` and `9` becomes `999999999`. `1` remains as `1`.\n\nFor example, if $S$ is `1324`, it becomes `1333224444` the next day, and it becomes `133333333322224444444444444444` the day after next. You are interested in what the string looks like after $5 \\times 10^{15}$ days. What is the $K$\\-th character from the left in the string after $5 \\times 10^{15}$ days?"},{"iden":"constraints","content":"*   $S$ is a string of length between $1$ and $100$ (inclusive).\n*   $K$ is an integer between $1$ and $10^{18}$ (inclusive).\n*   The length of the string after $5 \\times 10^{15}$ days is at least $K$."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$S$\n$K$"},{"iden":"sample input 1","content":"1214\n4"},{"iden":"sample output 1","content":"2\n\nThe string $S$ changes as follows:\n\n*   Now: `1214`\n*   After one day: `12214444`\n*   After two days: `1222214444444444444444`\n*   After three days: `12222222214444444444444444444444444444444444444444444444444444444444444444`\n\nThe first five characters in the string after $5 \\times 10^{15}$ days is `12222`. As $K=4$, we should print the fourth character, `2`."},{"iden":"sample input 2","content":"3\n157"},{"iden":"sample output 2","content":"3\n\nThe initial string is `3`. The string after $5 \\times 10^{15}$ days consists only of `3`."},{"iden":"sample input 3","content":"299792458\n9460730472580800"},{"iden":"sample output 3","content":"2"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}