일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 수 정렬하기
- Counting cells in a blob
- 2750
- C++
- adjacentElementsProduct
- baekjun
- 백준
- Numpy
- Sequential Search
- til
- 10953
- codesingal
- markdown
- Daily Commit
- centuryFromYear
- flask
- matrixElementsSum
- collections.deque
- data_structure
- cpp
- almostIncreasingSequence
- Python
- All Longest Strings
- 피보나치 수
- 파이썬 포렌식
- codesignal
- 파이썬머신러닝완벽가이드
- 2015 봄학기 알고리즘
- shapeArea
- recursion
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