\begin{problem}{The Goalkeeper's Challenge}{standard input}{standard output}{1 second}{256 megabytes}
The best strikers in the world have challenged the best goalkeepers to a penalty kick duel. Suppose a certain player's rating is
If
You are given an array of numbers denoting the player ratings
\InputFile
The first line contains a single integer
The first line of each test case contains a single integer
The second line of each test case contains
The third line of each test case contains
\OutputFile For each test case output the maximum number of goals that can be scored by the players
\Note For Example if
PR=[4,5,9,8]
GR=[1,5,9,10]
then the arrays could be arranged in the following manner
PR=[9,8,5,4] GR=[9,5,1,10]
so the first three players can score i.e. the maximum number of goals is 3
\end{problem}