Task Description
給定一組長度為 n 的正整數陣列 A。陣列中只有一個元素只出現一次,其它元素都會出現兩次。請找出只出現一次的元素,並列印出來。
Input Format
輸入為 A 中的 n 個元素值。
Note: 0 < n ≤ 100、 0 ≤ A[i] ≤ 100
Output Format
印出只出現一次的元素
Sample Input
2 2 1
Sample Output
1
Sample Input
1 2 2 4 1
Sample Output
4