using System;
using System.Numerics;
class Program {
static void Main(string[] args) {
string stringA = Console.ReadLine();
string stringB = Console.ReadLine();
BigInteger A = BigInteger.Parse(stringA);
BigInteger B = BigInteger.Parse(stringB);
Console.WriteLine(A + B);
Console.WriteLine(A - B);
Console.WriteLine(A * B);
}
}
문제 출처
https://www.acmicpc.net/problem/2338
'ComputerScience > Coding Test' 카테고리의 다른 글
C# 백준 5522번: 카드 게임 (0) | 2022.11.20 |
---|---|
C# 백준 25372번: 성택이의 은밀한 비밀번호 (0) | 2022.11.19 |
C# 백준 1271번: 엄청난 부자2 (0) | 2022.11.19 |
C# 백준 10757번: 큰 수 A + B (0) | 2022.11.19 |
백준 2420번: 사파리월드 (0) | 2022.11.12 |