#include<stdio.h>
#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
const int maxn=1e5+7;
const int mod=1e9+7;
struct Linear_Basis{
ll b[63],nb[63],tot;
bool flag=false;
void Init(){
tot=0;
flag=false;
memset(b,0,sizeof(b));
memset(nb,0,sizeof(nb));
}
void Ins(ll x){
for(int i=62;i>=0;i--){
if(x&(1ll<<i)){
if(!b[i]){
b[i]=x;
return;
}
x^=b[i];
}
}
flag=true;
return;
}
bool Fin(ll x){
if(x==0&&b[0])return 1;
for(int i=62;i>=1;i--){
int j=i-1;
if(x&(1<<j)){
x^=b[i];
if(!x)return 1;
}
}
return 0;
}
ll Max(ll x){
ll res=x;
for(int i=62;i>=0;i--){
res=max(res,res^b[i]);
}
return res;
}
ll Min(ll x){
ll res=x;
for(int i=0;i<=62;i++){
if(b[i])res^=b[i];
}
return res;
}
ll Rebuild(){
for(int i=62;i>=0;i--){
if(b[i]==0)continue;
for(int j=i-1;j>=0;j--){
if(b[j]==0)continue;
if(b[i]&(1ll<<j))b[i]^=b[j];
}
}
for(int i=0;i<=62;i++){
if(b[i])nb[tot++]=b[i];
}
}
ll Kth_Max(ll k){
if(flag)k--;
ll res=0;
if(k==0)return 0;
if(k>=(1ll<<tot))return -1;
for(int i=62;i>=0;i--){
if(k&(1ll<<i))res^=nb[i];
}
return res;
}
}LB;
void merge(Linear_Basis &a,Linear_Basis &b){
for(int i=31;i>=1;i--){
if(b.b[i]==0)continue;
a.Ins(b.b[i]);
}
b=a;
}
int main(){
int n;
scanf("%d",&n);
return 0;
}