공부하는 히욤이

2558번 : A+B 본문

Algorithm/BaekJoon

2558번 : A+B

히욤이 2019. 2. 18. 22:56

2558번 : A+B

문제 출처 : 백준 알고리즘


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


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

2606번 : 바이러스  (1) 2019.03.07
9498번 : 시험 성적  (0) 2019.02.18
10430번 : 나머지  (0) 2019.02.18
10869번 : 사칙연산  (0) 2019.02.18
1008번 : A/B  (0) 2019.02.18