#DPV. Subtree

Subtree

Score : 100100 points

Problem Statement

There is a tree with NN vertices, numbered 1,2,,N1, 2, \ldots, N. For each ii (1iN11 \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, so that any black vertex can be reached from any other black vertex by passing through only black vertices.

You are given a positive integer MM. For each vv (1vN1 \leq v \leq N), answer the following question:

  • Assuming that Vertex vv has to be black, find the number of ways in which the vertices can be painted, modulo MM.

Constraints

  • All values in input are integers.
  • 1N1051 \leq N \leq 10^5
  • 2M1092 \leq M \leq 10^9
  • 1xi,yiN1 \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 MM

x1x_1 y1y_1

x2x_2 y2y_2

::

xN1x_{N - 1} yN1y_{N - 1}

Output

Print NN lines. The vv-th (1vN1 \leq v \leq N) line should contain the answer to the following question:

  • Assuming that Vertex vv has to be black, find the number of ways in which the vertices can be painted, modulo MM.
3 100
1 2
2 3
3
4
3

There are seven ways to paint the vertices, as shown in the figure below. Among them, there are three ways such that Vertex 11 is black, four ways such that Vertex 22 is black and three ways such that Vertex 33 is black.

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

Be sure to print the answers modulo MM.