Jecka is making a choose-your-own-adventure game. In this genre of video games, there are multiple scenes each with a choice between two different options that lead to different scenes, called choice scenes. There are also ending scenes: scenes that do not have any options. To make her life easier, Jecka represents each scene with a unique integer ID from
Since Jecka wants to make sure her playerbase is entertained by the game, she needs to fulfill their requirements of the game. Specifically, they will only enjoy a game that has exactly
Jecka is an organized person, so she wants the IDs of the scenes to satisfy the following rules:
- Scene
must be the starting scene; that is, there may not be any choice scenes that lead to it - Scenes
to must be choice scenes - Scenes
to must be ending scenes
Additionally, all scenes must be reachable from scene
Can you help her craft a game that follows these requirements?
Constraints
Input Specification
The first line will contain two integers,
Output Specification
Output -1
. If there are multiple possible arrangements, output any.
Sample Input 1
1 4
Sample Output 1
-1
Explanation for Sample 1
It is not possible to create a game that has
Sample Input 2
2 2
Sample Output 2
2 3
3 4
Explanation for Sample 2
The graph looks like this:
Scenes
Comments