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>
int tab[1100000];
int main()
{
	int n,t,s;
	scanf("%d%d",&n,&t);
	s = 1;
	while (n--) s<<=1;
	if(t%2)
	{
		for(n=0;n<s;n++)
		{
			scanf("%d",tab+n);
		}
		while(s--)
		{
			printf("%d ",tab[s]);
		}
	}
	else
	{
		while(s--)
		{
			scanf("%d",&n);
			printf("%d ",n);
		}
	}
	return 0;
}