import java.io.IOException;
import java.net.ServerSocket;

public class Main {

    public static void main(String[] args) throws IOException {
        ServerSocket socket1 = new ServerSocket(63132);
        ServerSocket socket2 = new ServerSocket(63132);
    }
}
