You are given a matrix which has K special cells in it. You have to reach from . From any cell, you can only move rightwards or downwards.
The cells are those cells in this grid which have special strength at them. special cell has units of strength and if you travel through this cell, you store the strength.
Find the total strength you can store after travelling through all the possible paths in the grid to reach cell .
Note:
The strength of a path is the sum of strength of all the special cells that are visited in this path.
The cells that are not special have power quotient equals to zero.
Input format
The first line contains the total number of test cases denoted by T.
The first line of each test case contains three space separated integers N, M and K where N x M is the size of grid and K is the total number of special cells in the grid.
Each of next K lines contains X[i], Y[i], and P[i] where (X[i],Y[i]) is the location of special cell and P[i] is the cell strength.
Output format
For each test case, print in a new line a single integer representing the total strength that you can store, as the total strength can be too large, print it modulo .
Constraints
Sample Input
1
2 2 2
1 2 4
2 1 7
Sample Output
11
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation
Total Power that can be collected is 11, as there are only two possible paths in grid of size 2x2 and total power we can collect by traveling through both of these paths is 11.