- Time limit: 1.00 s
- Memory limit: 512 MB
A game has levels and teleportes between them. You win the game if you move from level to level using every teleporter exactly once.
Can you win the game, and what is a possible way to do it?
Input
The first input line has two integers and : the number of levels and teleporters. The levels are numbered .
Then, there are lines describing the teleporters. Each line has two integers and : there is a teleporter from level to level .
You can assume that each pair in the input is distinct.
Output
Print integers: the sequence in which you visit the levels during the game. You can print any valid solution.
If there are no solutions, print "IMPOSSIBLE".
Constraints
Example
Input:
5 6 1 2 1 3 2 4 2 5 3 1 4 2
Output:
1 3 1 2 4 2 5