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
- 사칙연산
- 백준
- 정렬
- xcz.kr
- 인코그니토
- cryptography
- C
- 써니나타스
- 그리디 알고리즘
- 문자열
- 구현
- Text
- Forensics
- Database
- Python
- Digital Forensics
- writeup
- php
- CTF
- wargame
- HackCTF
- misc
- Web Hacking
- Network
- 수학
- MySQL
- Incognito
- SuNiNaTas
- N0Named
- Web
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3/C] 1000번 A+B 본문
[Baekjoon/Python3/C] 1000번 A+B
1000번: A+B
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
[Python3]
A, B = map(int, input().split())
print(A + B)
[C]
#include <stdio.h>
int main(void) {
int a, b;
scanf("%d %d", &a, &b);
printf("%d\n", a + b);
return 0;
}'Programming > Python & Data Structures' 카테고리의 다른 글
| [Baekjoon/Python3] 1037번 약수 (0) | 2020.12.02 |
|---|---|
| [Baekjoon/Python3] 1032번 명령 프롬프트 (0) | 2020.12.02 |
| [Baekjoon/Python3] 1026번 보물 (0) | 2020.12.02 |
| [Baekjoon/Python3/C] 1008번 A/B (0) | 2020.12.02 |
| [Baekjoon/Python3/C] 1001번 A-B (0) | 2020.12.02 |
Comments