import java.util.HashMap;
import java.util.Scanner;
import java.util.Set;
public class Test {
public static void main(String[] args) {
HashMap<Integer,Integer> map = new HashMap<Integer, Integer>();
Scanner sc = new Scanner(System.in);
for(int i=0;i<10;i++){
int a = sc.nextInt();
if(map.get(a)==null){
map.put(a, 1);
}else {
map.put(a, map.get(a)+1);
}
}
Set<Integer> k = map.keySet();
int[] bb=new int[k.size()];
int t=0;
for (Integer i : k) {
bb[t++]=i;
}
for (int i : bb) {
System.out.println(i);
}
}
}