#Lutece0088. Fold The Paper

Fold The Paper

Migrated from Lutece 88 Fold The Paper

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

You have a rectangular piece of paper that is divided into 1×11 \times 1 cells, each of which has an integer value.

You want to perform a sequence of folds on the paper, where you may fold anywhere along an axis that is in between two rows or columns of the paper. After performing all the folds you want, the overlapping cells will be considered as a single cell, whose value is the sum of the individual cells.

You want the biggest number in the resulting piece of paper to be as large as possible, what is the biggest number you can get ?

Input

First line of the input is a single integer TT(1T101\leq T \leq 10), indicating there are TT test cases. For each test case, the first line contains two integers, NN and MM (1N20,1M5001\leq N\leq 20,1\leq M\leq 500), indicating the length and width of the paper. Then NN lines followed, each line contains MM integers xix_i(104xi104-10^4 \leq x_i \leq 10^4), indicating the numbers in the original piece of paper.

Output

For each case,output Case #t: ret in a single line, where tt indicating the case number between 11 and TT, and retret is the biggest number you can get in the resulting piece of paper.

Samples

2
2 2
1 -2
3 -4
2 5
1 -2 -3 4 -5
6 -7 -8 9 -10
Case #1: 4
Case #2: 20

Note

  1. Of course, if you do not fold any cells, the value of each cell is its original value.
  2. Explanation for the 2nd Case in Sample Input

. 3. Note that merging the overlapping cells only happens after all the folds, which means:

.

Resources

Sichuan State Programming Contest 2012