Problem Statement

Given are Three arrays A, B and C.

Return the sorted list of numbers that are present in atleast 2 out of the 3 arrays.

Problem Constraints

1 <= |A|, |B|, |C| <= 100000

1 <= A[i], B[i], C[i] <= 100000

A, B, C may or may not have pairwise distinct elements.

Input Format

First argument is the array A.

First argument is the array B.

First argument is the array C.

Output Format

Return a sorted array of numbers.

Example Input

Input 1:

A = [1, 1, 2]
B = [2, 3]
C = [3]

Input 2:

A = [1, 2]
B = [1, 3]
C = [2, 3]

Example Output

Output 1: