#Lutece0616. Alice's Piano

Alice's Piano

Migrated from Lutece 616 Alice's Piano

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Alice has a piano which can plays nice music, but it's different from other pianos. It has two rows of keys, and the method of playing it is also quite special. When Alice plays piano, she has to put her two hands on the leftside of the two rows of keys respectively (without touching the leftmost keys of the two rows). And then her hands move on the keys from left to right one by one. Each time she can move one of her hands by one key, either on the above row or the below row. She has to keep the difference between the number of black keys and white keys she has already touched no more than KK to make sure the music is beautiful. When the music is end, her two hands should be both on the rightmost of the piano keyboard. Now Alice wants to know whether she can play nice music, given the description of the piano.

Suppose the number of keys of the two rows are both NN. And two strings are given to describe the keyboard. 1 stands for black keys while 0 for white ones.

Input

There are multiple cases, end by EOF.

For each case, the first line contains two integers NN(3N10003 \leq N \leq 1000) and KK (0K10000 \leq K \leq 1000), with two 0-1 strings which are described above.

Output

If she can play the music, please output an answer string of length 2N2N which has the minimum lexicographic order. In the answer string, 1 represents move on the above row while 2 represents the below row. If she cannot, just output Poor Alice.

Samples

4 1
0011
0110

4 1
1100
1100
22121112
Poor Alice

Note

Take the first sample for explaining:

Suppose Alice puts her left hand on the above row of keys, and right on the

below one, the answer string stands for the following process:

  1. move right hand to the 1st1_{st} key of the below row of keys.
  2. move right hand to the 2nd2_{nd} key of the below row of keys.
  3. move left hand to the 1st1_{st} key of the above row of keys.
  4. move right hand to the 3rd3_{rd} key of the below row of keys.
  5. move left hand to the 2nd2_{nd} key of the above row of keys.
  6. move left hand to the 3rd3_{rd} key of the above row of keys.
  7. move left hand to the 4th4_{th} key of the above row of keys.
  8. move right hand to the 4th4_{th} key of the below row of keys.

Resources

6th BUPT Programming Contest Final