#Lutece0280. Grove

Grove

Migrated from Lutece 280 Grove

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

There are many trees in the grove.We can assume that grove is a m×nm \times n grid, the grid starts from (1,1)(1,1). Farmer Sherlock is standing at (0,0)(0,0) point. He wonders how many trees he can see.

If two trees and Sherlock are in one line, Farmer Sherlock can only see the tree nearest to him.

Input

The first line contains one integer tt, represents the number of test cases. Then there are multiple test cases. For each test case there is one line containing two integers m and n(1m,n100000)n(1 \leq m, n \leq 100000)

Output

For each test case output one line represents the number of trees Farmer Sherlock can see.

Samples

2
1 1
2 3
1
5

Note

In case 22, trees in (1,1)(1,2)(1,3)(2,1)(2,3)(1,1) (1,2) (1,3) (2,1) (2,3) are visible. But tree in (2,2)(2,2) is invisible. The answer may exceed 3232-bit integer. Please use long long int. The data used in this problem is unofficial data prepared by RedWall. So any mistake here does not imply mistake in the offcial judge data.

Resources

2009 Multi-University Training Contest 3 - Ho