Tester

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

         int result = 5;
         int i = 5; 
	 
	 i--;
         if (i < 7)
             result--; 
         if (i < 10)
             result--;   
  }
}
What is the final value of result?