Tester

public class Tester {
  public static void main(String[] args) {
        int j = 12;
        int result = 0;
        if ( 15 - j > 0)
            result = j - 3 ;
  }
}
What is the final value of result?