package Greedy; import java.util.*; import java.io.*; /* * @author -- rajatgoyal715 */ public class BeautifulPairs { public static void main(String[] args) throws IOException{ BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); int n=Integer.parseInt(br.readLine()); int a[]=new int[n]; int b[]=new int[n]; String s1[]=br.readLine().split(" "); String s2[]=br.readLine().split(" "); for(int i=0;i