- Time limit: 1.00 s
- Memory limit: 512 MB
Consider a xor pyramid where each number is the xor of lower-left and lower-right numbers. Here is an example pyramid:
Input
The first line has an integer : the size of the pyramid.
The next line has integers : the bottom row of the pyramid.
Output
Print one integer: the topmost number.
Constraints
Example
Input:
8 2 10 5 12 9 5 1 5
Output:
9