#include <cstdio> #include <iostream> using namespace std; const int maxn = 10; struct Matrix { int row, col; int matrix[maxn][maxn]; Matrix() {}; Matrix(int r, int c) : row(r), col(c) {} }; Matrix Add(Matrix x, Matrix y) { Matrix answer = Matrix(x.row, x.col); ...