n, m = map(int, input().split()) for i in range(1 << n): print(*[(i << m) | j for j in range(1 << m)]) print(1)