Mr. Panda has recently fallen in love with a new game called Square Off, in which players compete to find as many different squares as possible on an evenly spaced rectangular grid of dots. To find a square, a player must identify four dots that form the vertices of a square. Each side of the square must have the same length, of course, but it does not matter what that length is, and the square does not necessarily need to be aligned with the axes of the grid. The player earns one point for every different square found in this way. Two squares are different if and only if their sets of four dots are different.
Mr. Panda has just been given a grid with rows and columns of dots. How many different squares can he find in this grid? Since the number might be very large, please output the answer modulo .
Input Specification
The first line of the input gives , the number of test cases. lines follow. Each line has two integers and : the number of dots in each row and column of the grid, respectively.
Output Specification
For each test case, output one line containing Case #x: y
, where x
is the test case number (starting from ) and y
is the number of different squares which can be found in the grid.
Limits
Subtask 1 [8/25]
Subtask 2 [17/25]
Sample Input
4
2 4
3 4
4 4
1000 500
Sample Output
Case #1: 3
Case #2: 10
Case #3: 20
Case #4: 624937395
Explanation
The pictures below illustrate the grids from the first three sample cases, and a valid square in the third sample case.
Comments