Hide

Problem B
Always Know Where Your Towel Is

Arthur wants to go swimming. Another chance to use his favourite towel! He is concerned that if he leaves it out at the pool then someone might take it. So he keeps it in a locker.

Accessing the lockers is done in a peculiar way. One has to use an app on their phone to unlock the lockers. The app displays $N$ distinct positive integers whose sum is at most $2^N-2$. The lockers are also numbered from $1$ to $2^N-2$. To open locker $S$, one simply pushes a subset of buttons on the app (a “combination”) whose sum is exactly $S$. Pushing a button multiple times has the same effect as pushing it once, so there is no point to pushing a button more than once.

Arthur makes some observations. Oddly, it might be impossible to open some lockers. Also, since there are $2^N-1$ nonempty subsets of buttons and each such subset has its values summing to an integer from $1$ to $2^N-2$, then there must be at least one locker that can be opened with more than one combination.

Arthur does not want to forget where he puts his towel when he goes swimming. He believes it will be easier to remember which locker he uses if it has more than one combination that can open it. Help Arthur find such a locker!

Input

The first line of input contains a single integer $N$ ($3 \leq N \leq 42$). Then next and final line contains $N$ positive integers $a_1, \ldots , a_N$. These integers are distinct and satisfy $\sum _{i=1}^N a_i \leq 2^N-2$.

Output

Output a single integer $S$ ($1 \leq S \leq 2^N-2$) such that locker $S$ can be opened by more than one combination. If there are multiple possible solutions, any will suffice.

Sample Input 1 Sample Output 1
5
2 5 8 4 7
9
Sample Input 2 Sample Output 2
3
1 2 3
3
Sample Input 3 Sample Output 3
7
19 24 11 23 9 21 18
41

Please log in to submit a solution to this problem

Log in