Tester

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