时间限制:1.0s 内存限制:256.0MB
输入两个正整数a,b,输出a+b的值。
两行,第一行a,第二行b。a和b的长度均小于1000位。
一行,a+b的值。
4
2
2
6
import java.math.BigInteger; import java.util.*; public class dashujiafa { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc =new Scanner(System.in); BigInteger a = sc.nextBigInteger(); BigInteger b = sc.nextBigInteger(); BigInteger result = a.add(b); System.out.println(result); } }
评论 (0)