- Time limit: 1.00 s
- Memory limit: 512 MB
A game consists of rooms and teleporters. At the beginning of each day, you start in room and you have to reach room .
You can use each teleporter at most once during the game. How many days can you play if you choose your routes optimally?
Input
The first input line has two integers and : the number of rooms and teleporters. The rooms are numbered .
After this, there are lines describing the teleporters. Each line has two integers and : there is a teleporter from room to room .
There are no two teleporters whose starting and ending room are the same.
Output
First print an integer : the maximum number of days you can play the game. Then, print route descriptions according to the example. You can print any valid solution.
Constraints
Example
Input:
6 7 1 2 1 3 2 6 3 4 3 5 4 6 5 6
Output:
2 3 1 2 6 4 1 3 4 6