Write the integer N one after another N times to build a single string. For N=3 the string is 333. If the string is longer than M characters, keep only its first M characters.
Input
The first line contains N and M, separated by a space. (1≤N,M≤2016)
Output
Print the resulting string on one line. If it is longer than M characters, print only its first M characters.