import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.channels.AsynchronousSocketChannel;

public class JI9060705_Client {

	public static void main(String[] args) throws IOException {
		AsynchronousSocketChannel client = AsynchronousSocketChannel.open(); 
		client.connect(new InetSocketAddress("127.0.0.1", 6000)); 
	}

}
