#dpp. [dp_p]Independent Set

[dp_p]Independent Set

Problem Statement

There is a tree with NN vertices, numbered 1,2,ldots,N1, 2, \\ldots, N. For each ii (1leqileqN11 \\leq i \\leq N - 1), the ii-th edge connects Vertex xix_i and yiy_i.

Taro has decided to paint each vertex in white or black. Here, it is not allowed to paint two adjacent vertices both in black.

Find the number of ways in which the vertices can be painted, modulo 109+710^9 + 7.

Constraints

  • All values in input are integers.
  • 1leqNleq1051 \\leq N \\leq 10^5
  • 1leqxi,yileqN1 \\leq x_i, y_i \\leq N
  • The given graph is a tree.

Input

Input is given from Standard Input in the following format:

NN x1x_1 y1y_1 x2x_2 y2y_2 :: xN1x_{N - 1} yN1y_{N - 1}

Output

Print the number of ways in which the vertices can be painted, modulo 109+710^9 + 7.


Sample Input 1

3
1 2
2 3

Sample Output 1

5

There are five ways to paint the vertices, as follows:


Sample Input 2

4
1 2
1 3
1 4

Sample Output 2

9

There are nine ways to paint the vertices, as follows:


Sample Input 3

1

Sample Output 3

2

Sample Input 4

10
8 5
10 8
6 5
1 5
4 8
2 10
3 6
9 2
1 7

Sample Output 4

157