문제 : 사칙연산(10869번)(Bronze V)문제 링크 : https://www.acmicpc.net/problem/10869출처 : Baekjoon Online Judge 사칙연산 기초에서 덧셈, 뺄셈, 곱셈, 몫, 나머지를 구현하면 됩니다. [C++]#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int a, b; cin >> a >> b; cout [Python]import sysinput = sys.stdin.readlineA, B = map(int, input().split())print(A + B)print(A - B)print(A * B)print(..