import java.net.*; import java.io.*; public class TripsuServer{ public static void main(String[] arg) throws Exception{ ServerSocket ss=new ServerSocket(3001); while(true){ Socket sc1=ss.accept(); new PrintWriter(sc1.getOutputStream(), true).println("Oota paarilist!"); Socket sc2=ss.accept(); new TripsuMang(sc1, sc2); } } }