Tester

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

         int result = 0;
         int i = 5; 

         i++;
         if (i < 7)
             result++;   
         if (i < 12)
             result++;   

  }
}
What is the final value of result?