What is the output of the program?

public class Value {
  public static int i=10;
    public static void main(String[] args) {
      Value a = new Value();
      Value b = new Value();
      a.i=4;
      b.i=5;
      System.out.println(a.i+b.i+++Value.i);
    }
}

Posted on by