Score : 100 points
There is a tree with N vertices, numbered 1 through N.
The i-th of the N-1 edges connects the vertices p_i and q_i.
Among the sequences of distinct vertices v_1, v_2, ..., v_M that satisfy the following condition, find the maximum value of M.
The input is given from Standard Input in the following format:
N p_1 q_1 p_2 q_2 : p_{N-1} q_{N-1}
Print the maximum value of M, the number of elements, among the sequences of vertices that satisfy the condition.
4 1 2 2 3 2 4
3
10 7 9 1 2 6 4 8 1 3 7 6 5 2 10 9 6 2 6
8