What will be the output of the following program?
public class Comedian {
public static void main(String args[]) {
String ali[] = {"12", "13", "14"};
int i = Integer.parseInt(ali[0]);
i = Integer.parseInt(ali[1]);
i = Integer.parseInt(ali[2]);
System.out.println(i + i + i);
System.out.print(i + " " + i + " " + i);
}
}