Home => ProblemSet => 1.6-10:大整数加法
Problem1117--1.6-10:大整数加法

1117: 1.6-10:大整数加法

Time Limit: 1 Sec  Memory Limit: 128 MB  Submit: 0  Solved: 0
[ Submit ] [ Status ] [ Creator: ][ 参考程序 ]

Description

求两个不超过200位的非负整数的和。

Input

有两行,每行是一个不超过200位的非负整数,可能有多余的前导0。

Output

一行,即相加后的结果。结果里不能有多余的前导0,即如果结果是342,那么就不能输出为0342。

Sample Input Copy

22222222222222222222
33333333333333333333

Sample Output Copy

55555555555555555555

Source/Category