#define _CRT_SECURE_NO_WARNINGS 1 #include<bits/stdc++.h> using namespace std; const int MAXN = 100; struct Matrix { int row, col; int matrix[MAXN][MAXN]; Matrix(int x, int y): row(x), col(y) {} }; Matrix add_matrix(Matrix x, Matrix y) { Matrix ansever = Matrix(x.row, x.col); for (int i = 0; i...