- Time limit: 1.00 s
- Memory limit: 512 MB
Syrjälä's network has computers and connections. Your task is to find out if Uolevi can send a message to Maija, and if it is possible, what is the minimum number of computers on such a route.
Input
The first input line has two integers and : the number of computers and connections. The computers are numbered . Uolevi's computer is and Maija's computer is .
Then, there are lines describing the connections. Each line has two integers and : there is a connection between those computers.
Every connection is between two different computers, and there is at most one connection between any two computers.
Output
If it is possible to send a message, first print : the minimum number of computers on a valid route. After this, print an example of such a route. You can print any valid solution.
If there are no routes, print "IMPOSSIBLE".
Constraints
Example
Input:
5 5 1 2 1 3 1 4 2 3 5 4
Output:
3 1 4 5