BLOPER - Operators

Given a set of N integer A = {1, 2, 3, …, N} and a integer S, your task is find a way to insert an operator ‘+’ or ‘-‘ to every neighbor pair of A, that the result of the expression after insert equal to S.

Input

A single line, N and S (1 ≤ N ≤ 500, |S| ≤ 125250)

Output

If there are way(s) to insert, outputs any of them, otherwise outputs “Impossible” (without quotes).

Example

Input:
9 5

Output:
1-2+3-4+5-6+7-8+9
Input:
5 6

Output:
Impossible

Added by:Kata
Date:2014-03-28
Time limit:0.100s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64

hide comments
2016-11-27 10:30:03
what is 5 and 6?
2016-09-16 05:01:25
I really cann't think of a better way than dfs, can anybody help me or tell me some places where I can find some ideas. : (
2016-03-31 05:14:28
You can't put ' - ' before 1.Hope this helps.
Enjoy Coding :D
2015-02-07 20:15:10 Kata
Time limit of this problem changed automatically (I talked about it at forum few days ago), so I set it back to latest state.

(Francky) ⇒ Thanks

Last edit: 2015-02-07 20:27:04
2015-02-07 19:47:56 Francky
@psetter : please explain why you moved this problem, and changes if they are.
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.