Files
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

20 lines
387 B
C++

#include <bits/stdc++.h>
using namespace std;
const int N = 10;
int a[N][N];
int main() {
int n = 3;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
cin >> a[i][j];
int s = 0;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++)
if (i == j) s += a[i][j];
cout << s << endl;
return 0;
}