#2346. 高精度加法

高精度加法

Problem description

In C/C++language, integers can generally be represented in the range of 231-2 ^ {31} to 2312 ^ {31} (approximately 2.110102.1 * 10 ^ {10} ), and even long types can only be represented in the range of 263-2 ^ {63} to 2632 ^ {63} . 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 10001000 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