public class Foo { public static void main( String[] args ) { System.out.println( "integer" + ":" + new Integer( 5 )); System.out.println( "float" + ":" + new Float( 5.5f )); } }