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