#D7785. Set Symmetric Difference
Set Symmetric Difference
Set Symmetric Difference
Find the symmetric difference of two sets and .
Constraints
Input
The input is given in the following format.
Elements in and are given in ascending order. There are no duplicate elements in each set.
Output
Print elements in the symmetric difference in ascending order. Print an element in a line.
Example
Input
7 1 2 3 4 5 6 7 4 2 4 6 8
Output
1 3 5 7 8
inputFormat
Input
The input is given in the following format.
Elements in and are given in ascending order. There are no duplicate elements in each set.
outputFormat
Output
Print elements in the symmetric difference in ascending order. Print an element in a line.
Example
Input
7 1 2 3 4 5 6 7 4 2 4 6 8
Output
1 3 5 7 8
样例
7
1 2 3 4 5 6 7
4
2 4 6 8
1
3
5
7
8
</p>