import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
// 과제 안내신 분
Scanner sc = new Scanner(System.in);
int []array = new int[31];
for(int i=1; i<=28; i++) {
int num = sc.nextInt();
array[num] =1;
}
for(int i=1; i<array.length; i++) {
if(array[i] !=1) {
System.out.println(i);
}
}
}
}
배열을 1~30까지 만들어서 입력받은 숫자를 1로만들어주고 아닌 숫자를 출력!