#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int n, m; cin >> n >> m; for (int i = 0; i < (1 << n); i++) { for (int j = 0; j < (1 << m); j++) { cout << i * (1 << m) + j << (j + 1 == (1 << m) ? "\n" : " "); } } }