E. Equidistant
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

In 2019 ICPC subregions structure was changed a little. Now for each subregion, we need to choose the best place for the subregion finals. To make things fair we want to choose a city in such a way that all teams will spend the same amount of time to get there.

To make things simpler we say that all teams will use trains to get to the finals. The railroad system can be represented as a tree where each city is a vertex and some pairs of cities are connected by a railroad. It takes exactly one hour to get from one city to another if they are directly connected.

You are given a description of the railroad system and the cities where teams are located. You need to choose any city that has an equal distance to all teams' cities or detect that no such city exists.

Input

The first line of the input contains two integers $$$n$$$ and $$$m$$$ — the number of cities and the number of teams ($$$1 \le m \le n \le 2 \cdot 10^5$$$). Each of the following $$$n - 1$$$ lines contains two integers $$$v_i$$$ and $$$u_i$$$ — the indices of the cities connected by the $$$i$$$-th railroad ($$$1 \le v_i, u_i \le n$$$). It is guaranteed that for each pair of cities there is exactly one simple path connecting them.

The next line contains $$$m$$$ integers $$$c_1, c_2, \ldots, c_m$$$ — the cities of the teams ($$$1 \le c_i \le n$$$). All teams are located in different cities.

Output

If it is impossible to choose a city fairly, output a single word "NO". Otherwise, output a the word "YES" at the first line. The second line should contain a single integer — the city where subregion finals should be held. If there is more than one solution, output any of them.

Examples
Input
6 3
1 2
2 3
3 4
4 5
4 6
1 5 6
Output
YES
3
Input
2 2
1 2
1 2
Output
NO