NN

Repeat the decimal form of N exactly N times and print at most its first M characters.

Easy1ImplementationStringNo attempts yetTime limit1sMemory limit32 MB

Problem

Write the integer NN one after another NN times to build a single string. For N=3N = 3 the string is 333. If the string is longer than MM characters, keep only its first MM characters.

Input

The first line contains NN and MM, separated by a space. (1N,M20161 \le N, M \le 2016)

Output

Print the resulting string on one line. If it is longer than MM characters, print only its first MM characters.