Give you two decimal integers A and B, please calculate the sum of A and B.
Give you two decimal integers A and B, please calculate the sum of A and B.
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).
One line for each test case, it is the sum of A and B.
10
12
22
Easy problem. Try to use arrays.