import java.lang.*;
import java.math.*;
public class GFG {
public static void main(String[] args) {
// Creating a BigInteger object
BigInteger big;
big = new BigInteger("31739");
BigInteger res =big.sqrt();
// print result
System.out.println("Square root value of BigInteger " + big
+ " is " + res);
}
}
Cannot find symbol sqrt()
in BigInteger
Please help me!!!!!