#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int h, w; cin >> h >> w; h = 1 << h, w = 1 << w; for(int y = 0; y < h; y++){ for(int x = 0; x < w; x++){ cout << y * w + x << (x + 1 == w ? '\n' : ' '); } } }