시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 256 MB51101031.250%

문제

Given a list of numbers, determine whether one of these numbers equals the product of all the other numbers.

입력

The first line of the input file contains a single integer $N$ --- the number of elements in the initial list  ($2 \leq N \leq 10^5$). The next line contains $N$ space-separated numbers constituting the list. Each of these numbers is an integer not greater than $10^9$ in absolute value.

출력

In the first line of the output file, print Yes or No, depending on whether some number from the list is equal to the product of all the other numbers --- or not. If the answer is Yes, in the second line, print such a number. If several numbers satisfy the conditions of the problem, print any of them.

예제 입력 1

3
2 4 2

예제 출력 1

Yes
4

예제 입력 2

2
2 3

예제 출력 2

No