triplea and tripleb have two integer arrays

and

, respectively. One day they came up with the following problem:
- Does there exists a pair of numbers in arrays
and
, such that their absolute difference is the same?
However, triplea and tripleb care about their data privacy, so they don't want to expose their array directly to each other. That's why they turn to you------triplec. Can you help them solve this problem?
Formally, you need to determine: do there exist four indices

, such that

,

and

.
输入描述:
The first line contains two integers
, denoting the sizes of array
and
, respectively.
The next line contains
integers
, denoting the elements of array
.
The next line contains
integers
, denoting the elements of array
.
输出描述:
If there exist four indices
, such that
,
and
, output
in a line, otherwise output
in a line.