#include using namespace std; int main() { int n, m; cin >> n >> m; string x; cin >> x; vector> res; // B_i |= B_j auto OR = [&](int i, int j) { res.push_back({2, i, i, i}); res.push_back({2, j, j, j}); res.push_back({2, i, i, j}); }; const int pl = 100000; res.push_back({2, pl - 2, pl - 2, pl - 2}); res.push_back({1, pl - 1, pl - 2}); res.push_back({2, pl, pl - 1, pl - 2}); for(int i = 1; i < m; i++) res.push_back({1, pl + i, pl + i - 1}); for(int i = 0; i < m; i++) { if(x[m - 1 - i] == '1') OR(0, pl + i); } cout << res.size() << endl; for(const auto &vec : res) { for(int i = 0; i < (int)vec.size(); i++) cout << vec[i] << " \n"[i == (int)vec.size() - 1]; } }