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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <iostream>
#include <vector>
using namespace std;
vector<int>wektor;
int rozloz(int war)
{
    int wyn=0;
    for(int i=0;i<=30;i++){
        if((war&(1<<i))>0){
            wyn++;
        }
    }
    return wyn;
}
int odwzoruj(int war,int k)
{
    int wyn=0;
    for(int i=30;i>=0;i--){
        if((war&(1<<i))>0&&k>0){
            k--;
            wyn+=(1<<i);
        }
    }
    return wyn;
}
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int ile_bitow;
    cin>>ile_bitow;
    int ind=1;
    while(true){
        int pom=rozloz(ind);
        ile_bitow-=pom;
        if(ile_bitow<=0){
            break;
        }
        ind++;
    }
    ile_bitow*=(-1);
    int x=odwzoruj(ind,ile_bitow);
    int ile=ind;
    if(1<=x&&x<=ind){
        ile--;
    }
    cout<<ile<<"\n";
    for(int i=ind;i>=1;i--){
        if(i!=x){
            cout<<i<<" ";
        }
    }

    return 0;
}