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
30
31
32
33
34
35
36
37
#include <iostream>

using namespace std;

int moja_tablica[100000];

int liczba_elementow, liczba_tasowan;

void wczytaj() {
    cin >> liczba_elementow >> liczba_tasowan;
    liczba_elementow = 1 << liczba_elementow;
    for(int i = 0; i < liczba_elementow; ++i) {
        cin >> moja_tablica[i];
    }
}



int main()
{
    ios_base::sync_with_stdio(false);
    wczytaj();

    if(liczba_tasowan%2 == 0) {
        for(int i = 0; i < liczba_elementow; ++i) {
            cout << moja_tablica[i] << " ";
        }
        cout << endl;
    } else {
        for(int i = liczba_elementow-1; i >= 0; --i) {
            cout << moja_tablica[i] << " ";
        }
        cout << endl;
    }

    return 0;
}