#include<iostream>
using namespace std;
int main() {
int m, n, a[1000][1000]; cin >> m >> n;
for(int i = 0; i < m; i++)
{
for(int j = 0; j < n; j++)
{
cin >> a[i][j];
}
}
for(int i = 0; i < m; i++)
{
for(int j = 0; j < n; j++)
{
cout << a[i][j];
}
}
return 0;
}
em chạy trên dev c nó lỗi như thế này ạ
Process exited after 2.658 seconds with return value 3221225725
Press any key to continue . . .