반응형

 

 

 

<코드>

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();
		
		A = A.add(B);
		System.out.println(A);

	}
}

 

BigInteger은 숫자가 아닌 문자열이기 때문에 사칙연산이 안되므로 BigInteger 클래스 내부의 메서드를 사용해서 덧셈을 하였습니다.

 

 

https://www.acmicpc.net/problem/10757

 

10757번: 큰 수 A+B

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

반응형

+ Recent posts