3216.Magic Formulas

Time Limit: 1s Memory Limit: 256MB

People in the Tomskaya region like magic formulas very much. You can see some of them below.Imagine you are given a sequence of positive integer numbers p1, p2, ..., pn. Lets write down some magic formulas: 3216_1.png
3216_2.png Here, "mod" means the operation of taking the residue after dividing.The expression 3216_3.png means applying the bitwise xor (excluding "OR") operation to integers x and y. The given operation exists in all modern programming languages. For example, in languages C++ and Java it is represented by "^", in Pascal - by "xor".People in the Tomskaya region like magic formulas very much, but they don't like to calculate them! Therefore you are given the sequence p, calculate the value of Q.

Input Format(From the terminal/stdin)

Input The first line of the input contains the only integer n (1 \le n \le 106). The next line contains n integers: p1,p2,...,pn (0 \le pi \le 2 \cdot 109).

Output Format(To the terminal/stdout)

Output The only line of output should contain a single integer - the value of Q.

Sample Input

Copy
3
1 2 3
 \n
 · · \n

Sample Output

Copy
3
 \n

Submit

请先 登录

© 2025 FAQs