[Baekjoon 1단계(9)] 10869번 : 사칙연산
출제 링크 : https://www.acmicpc.net/problem/10869 10869번: 사칙연산 두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오. www.acmicpc.net using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Solution { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(); Console.WriteLine(int...