#include <cstring> #include <iostream> using namespace std; int main() { int x, y, z; cin >> x >> y >> z; int a[x][y]; int b[y][z]; memset(a, 0, sizeof(a)); memset(b, 0, sizeof(b)); for (int i = 0;i < x;i++) { for (int j = 0...