#Lutece0260. Popular Cows

Popular Cows

Migrated from Lutece 260 Popular Cows

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

Every cow's dream is to become the most popular cow in the herd. In a herd of N(1N10,000)N (1 \leq N \leq 10,000) cows, you are given up to M(1M50,000)M (1 \leq M \leq 50,000) ordered pairs of the form (A,B)(A, B) that tell you that cow AA thinks that cow BB is popular. Since popularity is transitive, if AA thinks BB is popular and BB thinks CC is popular, then AA will also think that CC is popular, even if this is not explicitly specified by an ordered pair in the input. Your task is to compute the number of cows that are considered popular by every other cow.

Input

  1. Line 11: Two space-separated integers, NN and MM

  2. Lines 21+M2 \cdots 1+M: Two space-separated numbers AA and BB, meaning that AA thinks BB is popular.

Process to end of file.

Output

For each case:

Output A single integer on a single line that is the number of cows who are considered popular by every other cow.

Samples

3 3
1 2
2 1
2 3
1

Note

Cow 33 is the only cow of high popularity.

Resources

USACO 2003 Fall