return;
}
double a1 = Math.round(Math.random() * 60000) / 100.;
double a2 = Math.round(Math.random() * 4000) / 100.;
System.out.println("Invoking TestSum(" + a1 + "," + a2 + ")");
XLOper res = a.invoke("TestSum", new Double(a1), new Double(a2));
System.out.println(res.num);
}
}