Tester

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

       int result = 2;
       if ( ! (result > 3 && result < 15) )
           result++;
  
  }
} 
What is the final value of result?