import java.util.; import java.lang.; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=Integer.parseInt(sc.nextLine()); TreeMap<Integer,Integer> map=new TreeMap<Integer,Integer>(); for(int i=0;i<n;i++){ String[] line=sc.nextLine().spl...