import java.net.*;import java.io.*;import java.util.*; public class S{public static void main (String args[]) throws IOException{ int port = Integer.valueOf(args[0]).intValue();ServerSocket sS = null; boolean e = true;try{sS = new ServerSocket(port);}catch (IOException i){} while(e){new T(sS.accept()).start();}sS.close(); }}