시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB18012710570.470%

문제

On a whiteboard, you have found a list of integers. Is it possible to use all of them to write down a correct arithmetic expression where one of them is the sum of all the others?

You may not alter the integers in any way (e.g., changing the sign or concatenating).

입력

The first line of input contains an integer $n$ ($1 \le n \le 10^4$), representing the number of integers on the whiteboard.

The integers on the whiteboard are given over the next $n$ lines, one per line. Their absolute values are guaranteed to be at most $10^5$.

출력

Print a single integer $x$ which is one of the inputs, and is the sum of all the others. If there’s more than one such $x$, output any one. If there are no such values of $x$, output the string ‘BAD’.

예제 입력 1

4
1
6
3
2

예제 출력 1

6

예제 입력 2

4
-2
0
5
-3

예제 출력 2

0

예제 입력 3

5
1
10
4
2
-3

예제 출력 3

BAD