1148: 【C++语言训练】求矩阵的两对角线上的元素之和
          Memory Limit:128 MB
          Time Limit:1.000 S
         
      
      
        
          Judge Style:Text Compare
          Creator:
      
      
          Submit:57
          Solved:40
      
Description
	求矩阵的两对角线上的元素之和
    Input
	矩阵的行数N 
和一个N*N的整数矩阵a[N][N](N<=10)
      和一个N*N的整数矩阵a[N][N](N<=10)
Output
	所输矩阵的两对角线上的元素之和
        Sample Input Copy
3
1 2 3 
4 5 6 
7 8 9
          Sample Output Copy
25