Tester

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

        int i = 0;
        int result = 0;
        while ( i < 5 ) {
            if (i == 0)
               result++;
            if (i == 4)
               result++;
            if (i == 4 * 2)
               result++;
            i++;
        }
          
  }
}
What is the final value of result?