Tester Class

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

       int i = 3;
       int result = i * 7 + 2;

  }
}
 



What is the final value of result?