4 lines
134 B
Python
4 lines
134 B
Python
set1=set(map(int,input().split()))
|
|
set2=set(map(int,input().split()))
|
|
set3=set(map(int,input().split()))
|
|
print(sorted(set1&set2&set3)) |