In the Data structure class of HEU, the teacher asks one problem: How to find the longest path of one tree and the number of such longest path?
输入解释
There are several test cases. The first line of each case contains only one integer N, means there are N nodes in the tree. N-1 lines follow, each line has three integers w,v and len, indicate that there is one edge between node w and v., and the length of the edge is len.
输出解释
For each test case, output the length of longest path and its number in one line.