#2346. 高精度加法
高精度加法
Problem description
In C/C++language, integers can generally be represented in the range of to (approximately ), and even long types can only be represented in the range of to . To calculate larger numbers, software extensions are necessary, such as using arrays or strings to simulate larger numbers and perform arithmetic operations.
Now input two integers, please output their sum.
Input format
Two lines, one integer per line, each integer not exceeding bits
Output format
One line, the sum of two integers.
Example
15464315464465465
482321654151
15464797786119616
Data scale and agreement
Each integer should not exceed $1000 bits
Reminder
Please follow the WeChat official account onlineJudge