Răspuns:
#include <iostream>
using namespace std;
int a[100][100], b[100][100], n;
int main()
{
cin >> n;
for(int i = 1; i <= n; i++)
for(int j = 1; j <= n; j++)
cin >> a[i][j];
for(int i = 1; i <= n; i++)
for(int j = 1; j <= n; j++)
b[i][j] = a[i][j] + a[j][i];
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= n; j++)
cout << b[i][j] << ' ';
cout << '\n';
}
return 0;
}
Explicație: