Getting error in the code

#include
using namespace std;
int main()
{
int M, N;
cin >> M;
cin >> N;
if (M > 1 && M < 10)
{
if (N > 1 && N < 10)
{
int a[M][N] = {0};
int i, j;
for (i = 0; i < M; i++)
{
for (j = 0; j < N; j++)
{
cin >> a[i][j];
}
}
for (i = 0; i < N; i++)
{
if (i % 2 == 0)
{
for (j = 0; j < M; j++)
{
cout << a[j][i] << ", ";
}
}
else
{
for (j = M - 1; j >= 0; j–)
{
cout << a[j][i] << ", ";
}
}
}
cout << “END”;
}
}
return 0;
}

hi @anudeepvilkhu_44142e96798242ef can u please send me the code by saving on some online ide