A - A + B

Languages: C, C++, Java, Python, Kotlin, C#
Time & Memory limits: (details)

Print $a+b$.

Input

The first line contains an integer $n$ with the number of queries. The following $n$ lines contain two integers $a$ and $b$.

Output

For each input query output $a+b$.

Sample test(s)

Input
5 10 1 6 8 0 0 100 9 9 100
Output
11 14 0 109 109