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 <cstdio>

using namespace std;

int n,t;
long long roz=1;

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