#P1346G. Two IP Cameras

    ID: 5335 Type: RemoteJudge 3000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>*special problemmathnumber theory*2300

Two IP Cameras

No submission language available for this problem.

Description

You have two IP cameras of the same model. Each camera can take photos starting from some moment of time with a fixed period. You can freely choose the starting moment but you can choose the period only as one of kk values p1,p2,,pkp_1, p_2, \dots, p_k which are chosen by the camera's manufacturer.

You have nn moments of interest x1,x2,,xnx_1, x_2, \dots, x_n. You'd like to configure both cameras in such a way that at least one camera will take a photo in each of these moments. Configuring the camera means setting the moment when it takes the first photo and the gap between two consecutive photos (which should be one of the values p1,p2,,pkp_1, p_2, \dots, p_k). It's not a problem for you that cameras can take photos at other moments of time — you only care about moments of interest.

The first line contains two integers kk and nn (1k1051 \le k \le 10^5; 2n1052 \le n \le 10^5) — the number of periods to choose and the number of moments of interest.

The second line contains kk integers p1,p2,,pkp_1, p_2, \dots, p_k (1p1<p2<<pk1061 \le p_1 < p_2 < \dots < p_k \le 10^6) — the periods to choose in the ascending order.

The third line contains nn integers x1,x2,,xnx_1, x_2, \dots, x_n (1x1<x2<<xn1061 \le x_1 < x_2 < \dots < x_n \le 10^6) — the moments of interest in the ascending order.

Print YES (case insensitive) in the first line if there is a way to configure cameras.

In the second line, print two integers s1s_1 and cp1cp_1 (1s11061 \le s_1 \le 10^6; 1cp11061 \le cp_1 \le 10^6; cp1{p1,,pk}cp_1 \in \{p_1, \dots, p_k\}) — the starting moment and the period for the first camera. The period should be one of the given periods.

In the third line, print two integers s2s_2 and cp2cp_2 (1s21061 \le s_2 \le 10^6; 1cp21061 \le cp_2 \le 10^6; cp2{p1,,pk}cp_2 \in \{p_1, \dots, p_k\}) — the starting moment and the period for the second camera. The period should be one of the given periods.

If there is no way to configure cameras, print NO (case insensitive). If there are multiple ways, you may print any of them.

Input

The first line contains two integers kk and nn (1k1051 \le k \le 10^5; 2n1052 \le n \le 10^5) — the number of periods to choose and the number of moments of interest.

The second line contains kk integers p1,p2,,pkp_1, p_2, \dots, p_k (1p1<p2<<pk1061 \le p_1 < p_2 < \dots < p_k \le 10^6) — the periods to choose in the ascending order.

The third line contains nn integers x1,x2,,xnx_1, x_2, \dots, x_n (1x1<x2<<xn1061 \le x_1 < x_2 < \dots < x_n \le 10^6) — the moments of interest in the ascending order.

Output

Print YES (case insensitive) in the first line if there is a way to configure cameras.

In the second line, print two integers s1s_1 and cp1cp_1 (1s11061 \le s_1 \le 10^6; 1cp11061 \le cp_1 \le 10^6; cp1{p1,,pk}cp_1 \in \{p_1, \dots, p_k\}) — the starting moment and the period for the first camera. The period should be one of the given periods.

In the third line, print two integers s2s_2 and cp2cp_2 (1s21061 \le s_2 \le 10^6; 1cp21061 \le cp_2 \le 10^6; cp2{p1,,pk}cp_2 \in \{p_1, \dots, p_k\}) — the starting moment and the period for the second camera. The period should be one of the given periods.

If there is no way to configure cameras, print NO (case insensitive). If there are multiple ways, you may print any of them.

Samples

Sample Input 1

3 5
3 5 7
1 4 5 7 12

Sample Output 1

YES
1 3
5 7

Sample Input 2

3 2
1 2 3
1 10

Sample Output 2

YES
1 1
10 1

Sample Input 3

3 4
1 2 3
5 7 9 11

Sample Output 3

YES
5 1
5 1

Sample Input 4

3 4
10 20 100
2 3 4 7

Sample Output 4

NO