Mike has a square matrix with rows and columns. Cell denotes the cell present at row and column . Cell denotes the top left corner of the matrix. Each cell has some amount of coins associated with it and Mike can collect them only if he visits that cell. represents the number of coins in cell with row and column . From a cell , Mike can decide to go to cell or cell , as long as the cell lies within the boundaries of the matrix and has not been visited yet. He can choose to start the journey from any cell and choose to stop at any point. Mike wants to maximize the number of coins he can collect. Please help him determine the maximum number of coins he can collect.
输入格式
The first line of the input gives the number of test cases, . test cases follow. Each test case begins with a line containing the integer . The next lines contain integers each. The -th integer in the -th line represents the number of coins in cell .
输出格式
For each test case, output one line containing Case #: , where is the test case number (starting from ) and is the maximum number of coins Mike can collect.