#include #define endl '\n' using namespace std; const int MAXN=1e6+5; const int ALL=(1<<20)-1; int n; int a[MAXN]; int b[MAXN]; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); freopen("homework.in","r",stdin); freopen("homework.out","w",stdout); cin>>n; for(int i=1;i<=n;i++) cin>>a[i]; for(int i=1;i<=n;i++) cin>>b[i]; if(n<=20) cout<<1/0<