Java - Wrapper Classes
What will be the output of the following code?
String s = "123"; Integer obj = Integer.valueOf(s); int n = obj.intValue(); System.out.println(n + 10);
