Tester Class

public class Tester{
  public static void main(String[] args) {    

       int result = 0;
       result = 4 + 2 - 3;
       
  }
}
What is the final value of result?