#Lutece0309. Painting

Painting

Migrated from Lutece 309 Painting

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

One day, pfctgeorge was very bored. He looked around his room, and noticed that there were a lot of 1×1×11\times 1\times 1 cubic meter(m3m^3) plastic white cubes. Then, he decided to stack these cubes into a 33-Dimension object.

We assume that pfctgeorge's room is a 33-Dimensional space. Pfctgeorge stacked every cube located in (x0,y0)(x_0,y_0), that is, the cube was above of those cubes whose coordinate of XX is x0x_0 and coordinate of YY is y0y_0 before stacking this cube, and its edge is perpendicular to XX-axis,YY-axis of ZZ-axis respectively.

After stacking all the cubes into the object. Pfctgeorge noticed that there was a pail of colorful paint. So he wanted to painted the object into colorful. However, of course, he can only paint the surface of the object.

Help pfctgeorge to figure out the colorful area of the object in square meter(m2m^2) after his painting.

Input

The first line of the input contains an integer TT(1T201\leq T\leq 20) which means the number of test cases.

Then TT test cases follow, for every test case, the first line contains two integer mm,nn(1m,n101\leq m,n\leq 10), means the pfctgeorge's room is mm meters in width and nn meters in length. Then mm lines follow, every line contains nn integers in the range of 01000\cdots 100. If jthj_{th} number of ithi_{th} line is kk, it means there are kk cubes located in (i,j)(i,j).

Output

For each test case, you should output one line. First, output Case #C: , CC means the number of the test case which is from 11 to TT. Then, output an integer indicates the colorful area of the object in square meter after pfctgeorge's painting.

Samples

3
1 1
1
1 2
1 1
2 2
1 2
1 1
Case #1: 5
Case #2: 8
Case #3: 16

Note

The picture below described the status of pfctgeoge's room after painting in the third sample.(The color of paint is blue.)

title

Resources

love8909 & pfctgeorge