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 | 31 |
Tags
- CTF
- Text
- 구현
- 수학
- 백준
- cryptography
- 그리디 알고리즘
- 인코그니토
- 사칙연산
- SuNiNaTas
- N0Named
- Web
- Database
- misc
- Python
- Forensics
- C
- HackCTF
- 문자열
- Network
- Digital Forensics
- php
- MySQL
- Incognito
- 써니나타스
- wargame
- 정렬
- Web Hacking
- writeup
- xcz.kr
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3/C] 10869번 사칙연산 본문
[Baekjoon/Python3/C] 10869번 사칙연산
[Python3]
A, B = map(int, input().split())
print(A + B)
print(A - B)
print(A * B)
print(int(A / B))
print(A % B)
[C]
#include <stdio.h>
int main() {
int A, B;
scanf("%d %d", &A, &B);
printf("%d\n", A + B);
printf("%d\n", A - B);
printf("%d\n", A * B);
printf("%d\n", A / B);
printf("%d\n", A % B);
}
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10871번 X보다 작은 수 (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10870번 피보나치 수 5 (0) | 2020.12.06 |
[Baekjoon/Python3] 10867번 중복 빼고 정렬하기 (0) | 2020.12.06 |
[Baekjoon/Python3] 10833번 사과 (0) | 2020.12.06 |
[Baekjoon/Python3] 10824번 네 수 (0) | 2020.12.06 |
Comments