#Lutece0393. Tim

Tim

Migrated from Lutece 393 Tim

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

As a leader,LiuBang has many excellent generals as his subordinates,Such as Hanxin,YingBu,PengYue,JiBu,FanKuai and so on.

After LiuBang unified China, he divided his territory into n different regions and decided to send these generals out to govern them. It is common sense that one general can at most governs one region and one region can be governed by at most one general. There exist some bidirectional roads between some regions, and for any two distinct regions, at most one road exists between them. there is no self-loop, that is to say, the structure of the regions and the roads connecting them forms a simple graph. Besides, for any two adjacent regions (a road connects them)A and B, there are at most two different simple routes from A to B(Hint: simple route contains no duplicate regions or roads)

It is rumored that if there are two adjacent regions are both being governed by these generals, the two generals who govern them will plot to rebel, LiuBang could not tolerate such situation completely. But it is also believed the more generals he send out to govern these regions, the more stable his country will be.

Now LiuBang wants to know, how many generals he can send out at most while guaranteeing no rebellion would happen.

Input

The first line of the input contains an integer TT indicating the number of cases.

Each case contains two positive integers nn, mm (1n100001\leq n\leq 10000, 1m200001\leq m\leq 20000), in the first line, indicating the number of regions and the number of roads. then mm lines follow, each line contains 22 positive integers AA, BB(1A,Bn1\leq A, B\leq n, ABA\neq B) indicating a road connecting region AA and region BB.

Output

A single integer for each case indicating the maximum number of generals LiuBang could send out.

Samples

1
4 2
1 2
3 4
2

Note

LiuBang Can send two generals to 11 and 33, but if LiuBang sends the two generals to 11 and 22, they will plot to rebel as region 11 and 22 are adjacent.

Resources

10th SCU Programming Contest Final