A+B until two zeros

No attempts yetTime limit1sMemory limit256 MB

Problem

Write a program that reads two integers AA and BB and prints A+BA+B.

Input

The input holds several test cases. Each test case is one line, and that line gives AA and BB separated by a space. (0<A,B<100 < A, B < 10)

The last line of the input gives two zeros. That line marks the end of the input and is not a test case. The input may consist of that line alone.

Output

For each test case, print A+BA+B on its own line, in the order the test cases were given. If there is no test case, print nothing.