A+B
时间限制:C/C++/Rust/Pascal 2秒,其他语言4秒
空间限制:C/C++/Rust/Pascal 64 M,其他语言128 M
64bit IO Format: %lld

题目描述

Bijan is new to programming. He learned recently that programmers do not code every bit of their apps from scratch.

For example they never write a code to sum two integers, because their languages have the ability to do the sum. But can they use it? Can an experienced coder who has attended more than 100 contests, sum two integers?

Bijan is not sure about this. What's your opinion?

输入描述:

You are given two integers a and b, one per line (1 ≤ a, b < 10500). These numbers will not have any leading zeros.

输出描述:

Write sum of the two integers. Do not put any leading zeros.

示例1

输入

复制
2
3

输出

复制
5
示例2

输入

复制
1390
2011

输出

复制
3401
示例3

输入

复制
12345
54321

输出

复制
66666