public class IntegerTest { public static void main(String[] str) { Integer i=new Integer("312"); System.printString(i.toString()); System.printString("\n"); System.printInt(Integer.parseInt("-34")); System.printString("\n"); } }