#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<string>
#include<iostream>
#include<sstream>
#include<vector>
#include<list>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<bitset>
#include<limits.h>
#include<assert.h>
using namespace std;
#define all(X) (X).begin(), (X).end()
#define rep(I,A,B) for(int I=(A);I<(B);I++)
#define repd(I,A,B) for(int I=(A);I>(B);I--)
#define sort_unique(c) (sort(c.begin(),c.end()), c.resize(distance(c.begin(),unique(c.begin(),c.end()))))
typedef long long LL;
typedef pair<int,int> PII;
typedef pair<LL,LL> PLL;
typedef vector<int> VI;
typedef vector<PII> VPII;
typedef vector<LL> VLL;
typedef vector<PLL> VPLL;
template<class T> void _R(T &x) { cin >> x; }
void _R(int &x) { scanf("%d", &x); }
void _R(int64_t &x) { scanf("%lld", &x); }
void _R(double &x) { scanf("%lf", &x); }
void _R(char &x) { scanf(" %c", &x); }
void _R(char *x) { scanf("%s", x); }
void R() {}
template<class T, class... U> void R(T &&head, U &&... tail) { _R(head); R(tail...); }
template<class T> void _W(const T &x) { cout << x; }
void _W(const int &x) { printf("%d", x); }
void _W(const int64_t &x) { printf("%lld", x); }
void _W(const double &x) { printf("%.16f", x); }
void _W(const char &x) { putchar(x); }
void _W(const char *x) { printf("%s", x); }
template<class T,class U> void _W(const pair<T,U> &x) {_W("{"); _W(x.first); putchar(','); _W(x.second); _W("}");}
template<class T> void _W(const vector<T> &x) { for (auto i = x.begin(); i != x.end(); _W(*i++)) if (i != x.cbegin()) putchar(' '); }
void W() { }
template<class T, class... U> void W(const T &head, const U &... tail) { _W(head); putchar(sizeof...(tail) ? ' ' : '\n'); W(tail...); }
VI range(int A, int B) { VI v; rep(i,A,B) v.push_back(i); return v;}
#define N 1000
void update(int f[N+1][N+1], int vis[N+1][N+1], int i, int j, int i_, int j_, int v)
{
if(vis[i_][j_])
f[i_][j_] = max(f[i_][j_],f[i][j]+v);
else {
f[i_][j_] = f[i][j]+v;
vis[i_][j_]=1;
}
}
int a[N+1],b[N+1],f[N+1][N+1],vis[N+1][N+1];
int main()
{
//#ifdef DEBUG
//freopen("horse10.in","r",stdin);
//freopen("tmp.out","w",stdout);
//#endif
while(true) {
int n=0; R(n);
if(n==0) break;
rep(i,1,n+1) R(a[i]); // 田忌的马
rep(i,1,n+1) R(b[i]); // 王的马
sort(a+1,a+n+1,greater<int>());
sort(b+1,b+n+1,greater<int>());
//W("a:",a); // look look
//W("b:",b);
rep(i,0,n+1)
rep(j,0,n+1)
f[i][j]=vis[i][j]=0;
f[0][0]=0;
vis[0][0]=1;
//W(range(0,n+1));
rep(i,0,n) { // 齐王的前i匹马跟田忌的前j匹马和后i-j匹马比
rep(j,0,i+1) {
// 第i+1匹跟第j+1匹比
if(b[i+1] > a[j+1])
update(f,vis,i,j,i+1,j+1,-200);
else if(b[i+1] < a[j+1])
update(f,vis,i,j,i+1,j+1,200);
else
update(f,vis,i,j,i+1,j+1,0);
//W(i+1,':',f[i+1]);
// 第i+1匹跟第i-j-1匹比
if(b[i+1] > a[n-(i-j)])
update(f,vis,i,j,i+1,j,-200);
else if(b[i+1] < a[n-(i-j)])
update(f,vis,i,j,i+1,j,200);
else
update(f,vis,i,j,i+1,j,0);
//W(i+1,':',f[i+1]);
}
}
int ans=-0x3f3f3f3f;
rep(i,0,n+1)
ans=max(ans,f[n][i]);
W(ans);
}
return 0;
}