SCALE - Funny scales


Kinh_Can has a set of precious weights P1, P2, ..., PN in which the mass of the ith weight is Pi = 3i-1, and a balance with 2 scales. On a nice day, Kinh_Can decided to show off his set of precious weights to his friends, and said that he can put them in equilibrium with any weight as long as its mass is not more than the mass of the sum of his weights. At first, his friends didn't believe, but after many trials they realized that Kinh_Can was right. In addition, while putting a thing whose mass is X on a scale, Kinh_Can could put right away the weights added on the 2 scales to keep their balance without any trial. With a random weight X (X is a natural number, X ≠ 0). Your task is to put weights on scales in order to keep the 2 scales' balance like Kinh_Can. The first scale initially weights X, and the second one weights 0.

Input

Input has exactly one line consisting 2 numbers, the first is N and the second is X.

Output

  • If there is no solution, you should write -1
  • If there is at least one solution for the problem, you should write exactly 2 lines:
    • The first line contains some numbers descripting the indices of the weights in the first disc
    • The second line contains some numbers description the indices of the weights in the second disc
    • Note: One of 2 lines can be blank

Constraints

  • 1 ≤ N ≤ 20
  • 1 ≤ X ≤ 2000000000

Example

Input 1:
10 2

Output 1:
1
2
Input 2:
10 5

Output 2:
1 2
3

hide comments
NodaR M JarraR: 2013-04-21 16:23:09

i am getting wa in the 19th running ,, what should be the problem? i think that i solved it correctly!!
does the spaces after the last number of output make a problem??

manish sharma: 2012-04-18 13:48:10

can there be more than 1 solution

cprocoder: 2011-07-28 03:21:24

Very nice problem

Sigma Kappa: 2011-04-30 09:31:04

The numbers should be output in increasing order.

Harish: 2011-01-25 11:22:05

can someone post the tricky test cases for this problem ? with all cases I find that mine is working but I get WA


Added by:nha.duong
Date:2007-07-29
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:Classical