import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] students = new int[31];
for(int i=0; i<28; i++){
int student = Integer.parseInt(br.readLine());
students[student]++;
}
for(int i=1; i<=30; i++){
if(students[i] == 0) System.out.println(i);
}
br.close();
}
}
'Coding Test > 백준' 카테고리의 다른 글
[백준/자바] 10811 - 바구니 뒤집기 (0) | 2023.05.08 |
---|---|
[백준/자바] 3052 - 나머지 (0) | 2023.05.08 |
[백준/자바] 10813 - 공 바꾸기 (0) | 2023.05.08 |
[백준/자바] 10810 - 공 넣기 (0) | 2023.05.08 |
[백준/자바] 1152 - 단어의 개수 (0) | 2023.05.07 |