일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 파이썬
- programmers
- Spotify Api
- 프로그래머스
- SECS
- CS
- spring boot
- C++
- Spring JPA
- SWEA
- Baekjoon
- 회원가입
- 백준
- SW Expert Academy
- python
- Computer Science
- Spring
- MYSQL
- SECS/GEM
- regression
- c
- Gem
- 자바
- 회귀
- linux
- java
- 스포티파이
- modern c++
- SECS-II
- spotify
Archives
- Today
- Total
비버놀로지
[BAEKJOON 백준] 1000 A+B 본문
728x90
Scanner 를 이용해서 입력을 받고, 합을 출력해 준다.
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);
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[BAEKJOON 백준] 1008 A/B (0) | 2021.01.10 |
---|---|
[BAEKJOON 백준] 1001 A-B (0) | 2021.01.10 |
[Programmers 프로그래머스] 17682 [1차] 다트 게임 (0) | 2021.01.10 |
[Programmers 프로그래머스] 42889 실패율 (0) | 2021.01.10 |
[Programmers 프로그래머스] 17681 [1차] 비밀지도 (0) | 2021.01.10 |
Comments