You are given an array of integers. The special property of the array is that exactly two different elements occur once while other elements occur twice.
You are required to determine those two elements.
Input format
Output format
Print two space-separated integers that occur once in the array in ascending order.
Constraints
1≤N≤106
1≤Ai≤106, where Ai denotes the ith element in the array
The numbers other than 1 and 2 occur twice, hence, the answer is 1 and 2.