일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- centuryFromYear
- cpp
- C++
- matrixElementsSum
- almostIncreasingSequence
- Python
- til
- codesingal
- All Longest Strings
- Daily Commit
- 백준
- 10953
- adjacentElementsProduct
- codesignal
- Sequential Search
- baekjun
- flask
- 파이썬머신러닝완벽가이드
- data_structure
- markdown
- 2015 봄학기 알고리즘
- 파이썬 포렌식
- collections.deque
- Numpy
- shapeArea
- recursion
- Counting cells in a blob
- 수 정렬하기
- 2750
- 피보나치 수
Archives
- Today
- Total
Introfor
1000번 본문
Problem
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
Input
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
Output
첫째 줄에 A+B를 출력한다.
Source Code
1 2 | a, b = map(int, input().split()) print(a+b) | cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 9093번 stack (0) | 2020.09.09 |
---|---|
[백준] 10953번 / A+B - 6 (0) | 2020.07.03 |
[백준] 10870번 / 피보나치 수 5 (0) | 2020.07.01 |
[백준] 10872번 / 팩토리얼 (0) | 2020.07.01 |
[백준] 2750, 2751, 10989번 / 수 정렬하기1, 2, 3 (0) | 2020.06.29 |
Comments