1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//Aleksander Łukasiewicz
#include<bits/stdc++.h>
using namespace std;

const int MAXN = 1024*1024;

int A[MAXN + 3];

int main(){
	int n, t;
	scanf("%d %d", &n, &t);
	int M = 1;
	for(int i=0; i<n; i++)
		M*=2;
	for(int i=0; i<M; i++)
		scanf("%d", &A[i]);
	if(t%2==1)
		for(int i=M-1; i>=0; i--)
			printf("%d ", A[i]);
	else
		for(int i=0; i<M; i++)
			printf("%d ", A[i]);
	puts("");

return 0;
}