Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이용현황분석
- 10172
- setstate
- getline
- 백준 10172
- React
- await
- vetor
- 탈출문자
- 배열삭제
- 값삭제
- barplot in r
- DataFrame
- 그래픽
- 이스케이프시퀀스
- asynchronization
- R데이터형태
- barplot
- 백준
- useState
- react #회원가입 #비밀번호비교
- 백준 11718
- 데이터분석
- plot in r
- 버스분석
- 광명시버스분석
- 값추가
- 그대로 출력하기
- R 그래프
- 배열추가
Archives
- Today
- Total
devlog_zz
[입출력] python 백준 2558번 - A+B - 2 본문
728x90
[입출력] python 백준 2558번 - A+B - 2
문제
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10)
출력
첫째 줄에 A+B를 출력한다.
풀이
a = input()
b = input()
print(int(a)+int(b))
728x90
'Problem Solved > BOJ' 카테고리의 다른 글
[입출력] python 백준 10951번 - A+B - 4 (0) | 2022.06.30 |
---|---|
[입출력] python 백준 10950번 - A+B - 3 (0) | 2022.06.30 |
[입출력] python 백준 1000번 - A+B (0) | 2022.06.30 |
[입출력] python 백준 2557번 - Hello World (0) | 2022.06.30 |
백준 11718번 - 그대로 출력하기 (cin, get, getline) (0) | 2018.10.13 |
Comments