- Time limit: 1.00 s
- Memory limit: 512 MB
You want to travel from Syrjälä to Lehmälä by plane using a minimum-price route. Which cities will you certainly visit?
Input
The first input line contains two integers and : the number of cities and the number of flights. The cities are numbered . City 1 is Syrjälä, and city is Lehmälä.
After this, there are lines describing the flights. Each line has three integers , , and : there is a flight from city to city with price . All flights are one-way flights.
You may assume that there is a route from Syrjälä to Lehmälä.
Output
First print an integer : the number of cities that are certainly in the route. After this, print the cities sorted in increasing order.
Constraints
Example
Input:
5 6 1 2 3 1 3 4 2 3 1 2 4 5 3 4 1 4 5 8
Output:
4 1 3 4 5