#include //#include using namespace std; #define INF 1.1e9 #define LINF 1.1e18 #define FOR(i,a,b) for (int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() #define pb push_back #define pf push_front #define fi first #define se second #define BIT(x,n) bitset(x) #define PI 3.14159265358979323846 typedef long long ll; typedef pair P; typedef pair PP; //----------------------------------------------------------------------------- int A,a[10],B,b[10]; int main() { cin.tie(0); ios::sync_with_stdio(false); cin>>A; REP(i,A) cin>>a[i]; sort(a,a+A,greater()); cin>>B; REP(i,B) cin>>b[i]; sort(b,b+B,greater()); int cnt=1,last=a[0],turn=1,i=0,j=0; while(true) { if(i==A||j==B) break; if(turn==0) { turn=1; while(last<=a[i]&&i