A bicycle race is being organized in a country. The transport network of the country consists of
- A path is a sequence of roads in which each road starts in the city the preceding road ended in.
- A simple path is a path which never visits a city more than once.
- A ring is a simple path ending in the same city it started in.
The network is such that there is at least one path between every pair of cities. Additionally, every road in the network is part of at most one ring.
Your task is to find the longest path for the race satisfying two constraints:
- The path may begin in any city, but must end in city 1.
- The path may visit a city more than once, but it must not contain any road more than once.
Input Specification
The first line of input contains two integers
Each of the following
Output Specification
Output the length of the longest race path on a single line.
Sample Input 1
4 3
1 2
1 3
2 4
Sample Output 1
2
Sample Input 2
6 6
1 2
1 3
2 4
3 4
3 5
5 6
Sample Output 2
5
Sample Input 3
5 6
1 2
2 3
3 4
4 5
5 3
3 1
Sample Output 3
6
Comments