728x90
▶풀이방법
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.print(A+B);
}
}
** 주의해야할 점 **
필요한 패키지 import명시하기!!
728x90
'Algorithm > BaekJoon[Java]' 카테고리의 다른 글
백준 10953(문자열 콤마(') 구분) (0) | 2022.03.16 |
---|---|
백준 10952 (0) | 2022.03.16 |
백준 10951 (0) | 2022.03.16 |
백준 10950 (0) | 2022.03.16 |
백준 2557(Input, Output문제) (0) | 2022.03.16 |