What is the output of the following code?
public class A{
public static void main(String[] args){
int a = 100;
System.out.println(a++);
a++;
}
}


Posted on by