GrayInc 

Gray Inc. is a software fabricant specialized in management of Gray codes. An n-binary code, for n $ \geq$ 1, is a sequence of words w0, w1,... that includes every possible binary word of n bits. An n-Gray code is an n-binary code such that between any two consecutive words there is only one bit that changes, i.e., they differ at exactly one position. As you might be aware by now, there are many n-Gray codes.

Gray Inc. produces its own particular kind of Gray code in the following way (name Gn the produced n-Gray code, n $ \geq$ 1):

Gn = $\displaystyle \left\{\vphantom{
\begin{array}{lr}
\langle 0 , 1 \rangle & \...
...
(0G_{n-1}) \, (1G_{n-1}^R) & \textrm{if } n \geq 2 \\
\end{array} }\right.$$\displaystyle \begin{array}{lr}
\langle 0 , 1 \rangle & \textrm{if } n = 1\\
& \\
(0G_{n-1}) \, (1G_{n-1}^R) & \textrm{if } n \geq 2 \\
\end{array}$

The notation defining Gn should be understood as follows:

For instance,

G2  =  (0G1) (1G1R)
 =(0$\displaystyle \langle$0, 1$\displaystyle \rangle$) (1$\displaystyle \langle$0, 1$\displaystyle \rangle^{{R}}_{}$)
 =(0$\displaystyle \langle$0, 1$\displaystyle \rangle$) (1$\displaystyle \langle$1, 0$\displaystyle \rangle$)
 =$\displaystyle \langle$00, 01$\displaystyle \rangle$$\displaystyle \langle$11, 10$\displaystyle \rangle$
 =$\displaystyle \langle$00, 01, 11, 10$\displaystyle \rangle$

and

G3  =  (0G2) (1G2R)
 =(0$\displaystyle \langle$00, 01, 11, 10$\displaystyle \rangle$) (1$\displaystyle \langle$00, 01, 11, 10$\displaystyle \rangle^{{R}}_{}$)
 =(0$\displaystyle \langle$00, 01, 11, 10$\displaystyle \rangle$) (1$\displaystyle \langle$10, 11, 01, 00$\displaystyle \rangle$)
 =$\displaystyle \langle$000, 001, 011, 010$\displaystyle \rangle$$\displaystyle \langle$110, 111, 101, 100$\displaystyle \rangle$
 =$\displaystyle \langle$000, 001, 011, 010, 110, 111, 101, 100$\displaystyle \rangle$

Observe that not only Gn is an n-Gray code, but also a circular Gray code as the first word in the sequence may be regarded as the successor of the last one in the sequence.

Gray Inc. wants your help to solve the following problem: given a binary word w in Gn and a natural number m, they want to produce the binary word in the sequence Gn that is m words ahead w in the listing (of course, considering the circular ordering described above). Can you help them?

Input 

The problem input consists of several cases, each one defined by a line with an integer m ( 0 < m $ \leq$ 1000), and a binary n-word w ( 1 $ \leq$ n $ \leq$ 100), separated by one blank.

The end of the input is given by a line with m = 0 and w = 0.

Output 

For each input case, your solution should output the n-binary word that is m words ahead of w in the listing of Gn.

Sample Input 

1 0
3 0
1 1
1 11
6 011
123 010101010
0 0

Sample Output 

1
1
0
10
000
111100100