Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자연어처리
- Docker
- PYTHON
- 파이썬
- Baekjoon
- 금융문자분석경진대회
- dacon
- Git
- 캐치카페
- 편스토랑
- 백준
- ChatGPT
- Kaggle
- AI 경진대회
- 코로나19
- 데이콘
- ubuntu
- hackerrank
- programmers
- 편스토랑 우승상품
- github
- 맥북
- leetcode
- 프로그래머스 파이썬
- gs25
- SW Expert Academy
- 프로그래머스
- 우분투
- Real or Not? NLP with Disaster Tweets
- 더현대서울 맛집
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 14918번 : 더하기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 더하기 입니다.
👨🏻💻 코드 ( Solution )
def a_plus_b(a, b):
return a + b
if __name__ == "__main__":
a, b = map(int, input().split())
print(a_plus_b(a, b))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5523번 : 경기 결과 (Python) (0) | 2022.05.08 |
---|---|
[BaekJoon] 1235번 : 학생 번호 (Python) (0) | 2022.05.07 |
[BaekJoon] 16199번 : 나이 계산하기 (Python) (0) | 2022.05.05 |
[BaekJoon] 1308번 : D-Day (Python) (0) | 2022.05.04 |
[BaekJoon] 2738번 : 행렬 덧셈 (Python) (0) | 2022.05.03 |
Comments