- Time limit: 1.00 s
- Memory limit: 512 MB
You are given a string of length . If all of its distinct substrings are ordered lexicographically, what is the th smallest of them?
Input
The first input line has a string of length that consists of characters a–z.
The second input line has an integer .
Output
Print the th smallest distinct substring in lexicographical order.
Constraints
- It is guaranteed that does not exceed the number of distinct substrings.
Example
Input:
babaacbaab 10
Output:
aba
Explanation: The 10 smallest distinct substrings in order are a, aa, aab, aac, aacb, aacba, aacbaa, aacbaab, ab, and aba.