void FunChe (int b){ if (b <= 4) { for (int a=0;a<2;a++) { for (int c=0;c<2;c++) { cout << a << "," << c << "," <<"\n"; FunChe(b++); } } }}