


Example: String "aabbbcdcdcd" will be encrypted as "a2b3cd3".
Input string will always be lowercase characters without any spaces.
If the count of a substring is 1 then also it will be followed by Integer '1'.
Example: "aabcdee" will be Encrypted as "a2bcd1e2"
This means it's guaranteed that each substring is followed by some Integer.
Also, the frequency of encrypted substring can be of more than one digit. For example, in "ab12c3", ab is repeated 12 times. No leading 0 is present in the frequency of substring.
The frequency of a repeated substring can also be in parts.
Example: "aaaabbbb" can also have "a2a2b3b1" as Encrypted String.
The first line of each test case contains an Encrypted String 'S'.
The second line contains the integer value 'K'.
For each test case print, the 'K'th character of Decrypted String obtained from Encrypted String 'S'.
You are not required to print the output explicitly, it has already been taken care of. Just implement the function.
2 <= N <= 10^5
1 <= K <= M
1 <= M <= 10^18
Where 'N' is the length of String 'S' and 'M' is the length of the Decrypted String of 'S'.
All the characters of String 'S' are lowercase English letters.
Time Limit: 1sec
We will just iterate through Encrypted String ‘S’ and will create a Decrypted String. Then we can print the K’th character of Decrypted String.
We will just iterate through Encrypted String ‘S’ and will keep a track on length passed in Decrypted String.