#Lutece0461. Network

Network

Migrated from Lutece 461 Network

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

Yixght is a manager of the company called SzqNetwork(SN). Now she's very worried because she has just received a bad news which denotes that DxtNetwork(DN), the SN's business rival, intents to attack the network of SN. More unfortunately, the original network of SN is so weak that we can just treat it as a tree. Formally, there are NN nodes in SN's network, N1N-1 bidirectional channels to connect the nodes, and there always exists a route from any node to another. In order to protect the network from the attack, Yixght builds MM new bidirectional channels between some of the nodes.

As the DN's best hacker, you can exactly destory two channels, one in the original network and the other among the MM new channels. Now your higher-up wants to know how many ways you can divide the network of SN into at least two parts.

Input

In the first line of input there is an integer TT, meaning there is TT test cases.

For each test case, The first line of the input file contains two integers: NN (1N1000001\leq N\leq 100 000), MM (1M1000001\leq M\leq 100 000) — the number of the nodes and the number of the new channels.

Following N1N-1 lines represent the channels in the original network of SN, each pair (a,b)(a,b) denote that there is a channel between node aa and node bb.

Following MM lines represent the new channels in the network, each pair (a,b)(a,b) denote that a new channel between node aa and node bb is added to the network of SN.

Output

For each test case, first output Case #C: , where CC is the number of test case, from 11 to TT. Then output a single integer — the number of ways to divide the network into at least two parts.

Samples

1
4 1
1 2
2 3
1 4
3 4
Case #1: 3

Resources

POJ Monthly--2007.10.06, Yang Mu