공부하는 히욤이

1001번 : A-B 본문

Algorithm/BaekJoon

1001번 : A-B

히욤이 2019. 1. 24. 00:27

1001번 : A-B

문제 출처 : 백준 알고리즘

1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(a-b);
    }
 
}
 
cs


'Algorithm > BaekJoon' 카테고리의 다른 글

10718번 : We love kriii  (0) 2019.01.24
10172번 : 개  (0) 2019.01.24
7287번 : 등록  (0) 2019.01.24
1000번 : A+B  (0) 2019.01.24
2257번 : Hello World  (0) 2019.01.24