한 걸음 두 걸음

백준 15740 & 10757 ] 큰 수 덧셈하기 본문

CSE/baekjoon & swexpert

백준 15740 & 10757 ] 큰 수 덧셈하기

언제나 변함없이 2019. 3. 7. 17:37
반응형
import java.util.*;
import java.io.*;
import java.math.BigInteger;

public class Main {
    public static void main(String[] args){

        Scanner sc = new Scanner(System.in);

            BigInteger a = sc.nextBigInteger();
            BigInteger b = sc.nextBigInteger();
            System.out.println(a.add(b));
        }
}


math에서 제공하는 BigInteger를 활용하면 둘 다 맞을 수 있습니다.

이와 관련해서 백준블로그에서 잘 정리해주셨던데
https://www.acmicpc.net/blog/view/3
이를 참고하여 보면 더 좋을 것 같습니다.

반응형