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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//============================================================================
// Name        : tas.cpp
// Author      : Piotr
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
#include <math.h>
#include <cstdio>

using namespace std;

int karty[1100000];
int main() {
	long n,t;
	cin >> n;
	cin >> t;

	long lKart = pow(2,n);

//	cout << lKart << endl;
//	cout << t << endl;

	for(int i=0; i<lKart; i++){

		scanf("%d",&karty[i]);
	}

	if(t%2==0)
		for(int i=0; i<lKart; i++){

				printf("%d ",karty[i]);
			}
	else
		for(int i=0; i<lKart; i++){

				printf("%d ",karty[lKart-i-1]);
			}

	cout << endl;
	return 0;
}