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

题目描述

You are given two integers A and B. Calculate their sum and output it without leading zeros.

输入描述:

Two lines of input data contain integers A and B (1 ≤ A, B ≤ 105).

输出描述:

Output A + B without leading zeros.

示例1

输入

复制
12
3

输出

复制
15
示例2

输入

复制
100
5

输出

复制
105

备注:

The code provided in the post about the round doesn't solve the task.