Product

아직 제출이 없습니다시간 제한1초메모리 제한256 MB

문제

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 NN --- the number of elements in the initial list  (2N1052 \leq N \leq 10^5). The next line contains NN space-separated numbers constituting the list. Each of these numbers is an integer not greater than 10910^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.