1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>

int a[1100000];
int main()
{
  int n, t, N;
  std::cin >> n >> t;
  N = 1 << n;
  for(int i=0; i<N; i++)
    std::cin >> a[i];
  
  if(t & 1)
  {
    for(int i=N-1; i>=0; i--)
      std::cout << a[i] << " ";
  }
  else
  {
    for(int i=0; i<N; i++)
      std::cout << a[i] << " ";
  }
  return 0;
}