

public class Test {    
    public Test() {
      
        Math m = new Math();
        Double a = 16.0;
        Double b = m.sqrt(a);
        System.out.println("b=" + b);
    }
    
    public static void main(final java.lang.String[] args) {
        Test main = new Test();
    }
}
