There is a mysterious castle in Earthland. In this castle there are 'n' rooms and each room contains "saviour soul" which need to be freed to fight the evil and save earthland. Once the soul is freed it leads to destruction of the room, additionally there is a pathway where you and your friends are standing which is connected to each of the rooms. The castle is so mysterious that if room1 is connected to room2 means you can only go from room1 to room2 and not vice versa. The mystery doesn't end here, starting from a given room, say room(u) it is impossible to reach back to room(u) following any of the paths. Now you need to free all the saviours to save earthland and sacrifice yourself and friends for it. So determine the minimum of your friends who should accompany you for this holy task.
Note: You can visit any room from the pathway and after freeing the "saviour soul" you need to run to the next connected room if it exists, otherwise you die.
Input:
There are 't' test cases. For each test case you will be given 'n' - number of rooms and 'm' - number of connections between rooms. Next 'm' lines have two space separated integers say 'u' and 'v' which denotes a way to go from room(u) to room(v). All u,v pairs are distinct where, 1<=u,v<=n.
Output:
Minimum number of friends who need to sacrifice their life for this noble cause along with you.
Constraints:
1<=t<=100, 1<=n<=1000, 1<=m<=1000,
You don't need any friend to accompany. Your path is as follows: 1 -> 3 -> 2.