Problem B: A + B

Problem B: A + B

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 2075  Solved: 277
[Submit][Status][Web Board]

Description

Give you two decimal integers A and B, please calculate the sum of A and B.

Input

There are multiple test data (less than 1000). For each test data, there will be two integers, represent A and B (0 <= A, B <= 101000).

Output

One line for each test case, it is the sum of A and B.

Sample Input

10
12

Sample Output

22

HINT

Easy problem. Try to use arrays.

[Submit][Status]