#include <iostream> #include <vector> using namespace std; int main() { int x, y, z; cin >> x >> y >> z; vector<vector<int>> ma(x, vector<int>(y, 0)); vector<vector<int>> mb(y, vector<int>(z, 0)); vector<vector...