51 nod 1005 大數加法
阿新 • • 發佈:2018-12-17
基準時間限制:1 秒 空間限制:131072 KB 分值: 0 難度:基礎題
給出2個大整數A,B,計算A+B的結果。
Input
第1行:大數A 第2行:大數B (A,B的長度 <= 10000 需注意:A B有可能為負數)
Output
輸出A + B
Input示例
68932147586 468711654886
Output示例
537643802472
那就偷個懶用java大數運算吧
import java.util.Scanner; import java.math.BigInteger; public class Demo{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); BigInteger m = sc.nextBigInteger(); BigInteger n = sc.nextBigInteger(); System.out.println(m.add(n)); } }