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
#include <iostream>
#include <vector>
#include <algorithm>

int main()
{
	std::ios_base::sync_with_stdio(0);

	int t,n;
	std::cin >> n >> t;

	std::vector<int> v;
	v.resize(1<<n);
	for (int &a : v)
		std::cin >> a;

	if (t&1)
		std::reverse(v.begin(), v.end());

	for (const int &a : v)
		std::cout << a << ' ';
	std::cout << std::endl;

	return 0;
}