728x90
★ 문제
- 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
★ 소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println(a+b);
}
}
728x90
'백준 알고리즘' 카테고리의 다른 글
1. 입출력과 사칙연산 - 6 (10869번) (0) | 2023.02.27 |
---|---|
1. 입출력과 사칙연산 - 5 (1008번) (0) | 2023.02.27 |
1. 입출력과 사칙연산 - 4 (10998번) (0) | 2023.02.27 |
1. 입출력과 사칙연산 -3 (1001번) (0) | 2023.02.27 |
1. 입출력과 사칙연산 - 1 (2557번) (0) | 2023.02.27 |