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);
}
}
'JAVA > 백준' 카테고리의 다른 글
[입출력] 백준 11720 (0) | 2021.07.30 |
---|---|
[입출력] 백준 11719 (0) | 2021.07.30 |
[입출력] 백준 2741 (0) | 2021.07.30 |
[입출력] 백준 2739 (0) | 2021.07.30 |
[입출력] 백준 1924 (0) | 2021.07.30 |