백준 #11382번 꼬마 정민

jhj·2024년 1월 31일

백준 JAVA

목록 보기
60/583
import java.util.Scanner;
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();
		BigInteger c = sc.nextBigInteger();
		
		System.out.println(a.add(b).add(c));
		sc.close();
	}
}
profile
개발자를 꿈꾸는

0개의 댓글