You are given an array of size of numbers in which every number appears an even number of times except for one. Find that number.
Input Specifications
The first line of input will contain , the size of the array, followed by array , where .
Output Specifications
Output one integer, the integer that occurred an odd number times.
Sample Input
3
1 1 2
Sample Output
2
Comments