import java.net.*;

public class Test {
    public static void main(String[] args)  throws Exception {
       ServerSocket s = new ServerSocket(); 
        s.bind(new InetSocketAddress("::", 12345)); 
    }
}
