- Time limit: 1.00 s
- Memory limit: 512 MB
Consider a network consisting of computers and connections. Each connection specifies how fast a computer can send data to another computer.
Kotivalo wants to download some data from a server. What is the maximum speed he can do this, using the connections in the network?
Input
The first input line has two integers and : the number of computers and connections. The computers are numbered . Computer is the server and computer is Kotivalo's computer.
After this, there are lines describing the connections. Each line has three integers , and : computer can send data to computer at speed .
Output
Print one integer: the maximum speed Kotivalo can download data.
Constraints
Example
Input:
4 5 1 2 3 2 4 2 1 3 4 3 4 5 4 1 3
Output:
6