Tester

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

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