728x90
728x90
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Numerics;
public class Program
{
public static void Main()
{
String[] str = Console.ReadLine().Split(' ');
BigInteger a = BigInteger.Parse(str[0]);
BigInteger b = BigInteger.Parse(str[1]);
Console.WriteLine(a + b);
}
}
c# 에서는 using System.Numerics; 에서 BigInteger을 통해 큰 수를 사용할 수 있다.
728x90
'c# > 백준알고리즘' 카테고리의 다른 글
[백준 c#] 24060번 알고리즘 수업 - 병합 정렬 1 (1) | 2022.09.13 |
---|---|
[백준 2798번 c#] 블랙잭 (0) | 2022.07.17 |
[백준 11653번 c#] 소인수분해 구하기 (0) | 2022.07.11 |
[백준 2577번 c#] 숫자의 개수 (0) | 2022.07.06 |
[백준15552번 c#] 빠른 A+B (0) | 2022.07.05 |