import java.io.*; import java.util.*; public class diplomatic { public static void main(String[] args) throws FileNotFoundException, IOException { //Einlesroutine BufferedReader in = new BufferedReader (new FileReader("diplomatic.in")); int n = 0; String s=""; long[] x=new long [0]; long[] y=new long [0]; while(true) { String data = in.readLine(); if (data == null) break; StringTokenizer st = new StringTokenizer (data); while(st.hasMoreTokens()) if (n==0) { s = st.nextToken(); if ( s.compareTo("EOF")==0 ) s = "0"; Long I= new Long( s ); n = I.intValue(); x = new long[n]; y = new long[n]; } else { for(int i=0;i