Tester

public class Tester {
  public static void main(String[] args) {
  
       double x = 2.5 - 10;
       double result = Math.ceil(x);  
  }
}
What is the final value of result?