CalcServer cs = new CalcServer();
cs.port = Integer.parseInt(args[0]);
int tpSize = Integer.parseInt(args[1]);
pool = new ThreadPoolExecutor(
tpSize, tpSize, 50000L, TimeUnit.MILLISECONDS,
new LinkedBlockingQueue<Runnable>());
cs.run();
System.out.println("Calc server waiting for requests...");