Tester

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

       int result = 0;
       for (int i = 0; i < 3 ; i++){
              result =  i * i;
        }              

  }
}
What is the final value of result?