#D1000. Set Difference
Set Difference
Set Difference
Find the 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 difference in ascending order. Print an element in a line.
Example
Input
5 1 2 3 5 8 2 2 5
Output
1 3 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 difference in ascending order. Print an element in a line.
Example
Input
5 1 2 3 5 8 2 2 5
Output
1 3 8
样例
5
1 2 3 5 8
2
2 5
1
3
8
</p>