Write a program to find the sum of the last diagonal of the matrix. Given matrix with rows and columns. Its last diagonal always contains element
The first line provides two numbers: and the number of rows and columns in the matrix respectively. . Next lines with integer numbers follows. All the absolute values of the matrix are less than or equal to .
Print one integer number - the sum of the last diagonal.
Input
2 2 1 3 3 1
Output
2
Input
1 2 1 2
Output
2
Input
3 2 2 4 4 6 1 1
Output
5