#Lutece0077. Erdos' Travel

Erdos' Travel

Migrated from Lutece 77 Erdos' Travel

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Paul Erdos(1913-1996) is a legendary mathematician of the 2020th century(For more information about Erdos, see Problem Erdos Number). Erdos likes to travel and visit other mathematicians. One day he comes to a strange country named ByteLand, where people live on small islands. The islands are connected by two-way bridges and the topology of the islands is a tree(i.e. you can go from any island to any other one via bridges, and if any bridge is broken then the islands will be separated into two mutually unreachable parts). See the picture below for an example of the topology of the islands.

.

Erdos has heard before from legends that on each island of ByteLand lives a great mathematician, so he devised the following visiting plan before he arrives here: On each day he would randomly choose an island different from the one he is currently on and go to visit the mathematician there. He would spend the whole day on that island, discussing mathematical problems with his host, and moves on again the next day. Note Erdos might visit the same mathematician twice during a series of days.

For example, in the picture above, assume Erdos initially arrives in island 11 on the first day, he would randomly choose from islands 22, 33, 44, 55 and 66 as his next stop and travels there. If he chooses island 22, then on the second day his choice would be 11, 33, 44, 55 or 66.

Although Erdos is very enthusiastic about his traveling plan, he hates to cross the old bridges every day! However he still stipulates to his random-traveling plan, because he is a strong believer in probability theory and he thinks that this is the best way to maximize the chance of discovering new mathematic theorems.

Now Erdos would like to know, if his choice in each day is purely random(i.e. if there are n choices, then each one will be chosen with probability of 1/n1/n), what is the expected(i.e. average) number of bridges he would cross during RR days. In addition, the initial island which Erdos arrives in is equally likely to be any of the islands of ByteLand.

Input

On the first line of the input file are two integers NN and RR, the number of islands of ByteLand and the number of days Erdos would travel. The following N1N-1 lines each contain two number AA and BB, meaning there is a bridge between island AA and BB.

1N50000,1R100001 \leq N \leq 50000, 1 \leq R \leq 10000

Notes

  • Islands are numbered from 11 to NN.

  • The topology of the given islands is a tree.

  • A fraction AB\frac{A}{B} is reduced if and only if the greatest common divisor of AA and BB is 11

Output

Output on a single line the expected number of bridges Erdos would cross during R days. Output the answer as a reduced fraction A/BA/B.

Samples

3 1
1 2
2 3
4/3
2 2
1 2
2/1

Note

Sample Input/Output 1 Clarification

There are 33 islands. Connected by bridges as 1231 – 2 – 3. Erdos would travel for 11 day. If he arrives in island 11 initially, he would pick island 22 or island 33 as his next stop, both with probability of 1/21/2, for an expected number of $1\times \frac{1}{2} +2\times \frac{1}{2}=\frac{3}{2}$ bridges. If he arrives in island 22 initially, he would cross, on average, 1×12+1×12=11\times \frac{1}{2}+1\times \frac{1}{2}=1 bridge. He would cross an expected number of 2×12+1×12=322\times\frac{1}{2}+1\times\frac{1}{2}=\frac{3}{2} bridges if he initially arrives in island 33. The expected number of bridges Erdos would cross is thus $\frac{3}{2}\times\frac{1}{3}+1\times\frac{1}{3}+\frac{3}{2}\times\frac{1}{3}=\frac{4}{3}$.

Sample Input/Output 2 Clarification

There are only 22 islands, and Erdos would travel for 22 days. There are 22 equally likely paths that he would take during the 22 days: 1211-2-1 and 2122-1-2, so the answer is (2+2)×12=2(2+2)\times\frac{1}{2}=2.

Resources

The 5th UESTC Programming Contest Final