public class AutoboxExample { public static void main(String []args) { int a=5; System.out.println("a: "+ (new Integer(a)).toString() ); } }