beecrowd | 3280

Building Boundaries

By Antti Laaksonen FI Finland

Timelimit: 1

Maarja wants to buy a rectangular piece of land and then construct three buildings on that land.

The boundaries of the buildings on the ground must have rectangular sizes a1 × b1, a2 × b2, and a3 × b3. They can touch each other but they may not overlap. They can also be rotated as long as their sides are horizontal and vertical.

What is the minimum area of land Maarja has to buy?

Figure B.1: Illustration of the two test scenarios in Sample Input 1 and their solutions. In the second scenario the 5×1 building has been rotated by 90 degrees.

Input

The input consists of multiple test scenarios. The first line of input contains a single integer t (1 ≤ t ≤ 1000), the number of scenarios. Then follow the t scenarios. Each scenario consists of a single line, containing six integers a1, b1, a2, b2, a3 and b3 (1 ≤ a1, b1, a2, b2, a3, b3 ≤ 109).

Output

For each test scenario, output the minimum area of land such that Maarja can construct the three
buildings.

Input Sample Output Sample

2
2 3 2 2 1 1
2 4 5 1 2 3

12
21