매일코테

백준 7단계 no.8

공주맛밤 2022. 7. 24. 17:26

import java.math.BigInteger;
import java.util.*;

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));
    }
}
728x90
반응형

'매일코테' 카테고리의 다른 글

백준 8단계 no.2  (0) 2022.07.25
백준 8단계 no.1  (0) 2022.07.25
백준 7단계 no.7  (0) 2022.07.24
백준 7단계 no.6  (0) 2022.07.24
백준 7단계 no.5  (0) 2022.07.24