public class MainClass { public static void main(String args[]) { Integer iOb = 100; // autobox an int System.out.println(iOb); } }
100