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
#include <stdio.h>
using namespace std;

int n;
int t;
int ile = 1;
int karty[4000000];

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

	return 0;
}