import java.io.*;
public class Baekjoon5565 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
for(int i=0; i<9; i++) {
int minus = Integer.parseInt(br.readLine());
n -= minus;
}
System.out.println(n);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준 10809번 ː 자바(JAVA)] 알파벳 찾기 (0) | 2020.07.14 |
---|---|
[백준 2444번 ː 자바(JAVA)] 별 찍기 7 (0) | 2020.07.14 |
[백준 5597번 ː 자바(JAVA)] 과제 안 내신 분...? (2) | 2020.07.09 |
[백준 11720번 ː 자바(JAVA)] 숫자의 합 (0) | 2020.05.07 |
[백준 11654번 ː 자바(JAVA)] 아스키 코드 (0) | 2020.05.05 |