//Sample20_33.java class Sample20_33{ public static void main(String[] args){ String str1 = "123"; String str2 = "456.25"; Integer oi = new Integer(str1); Double od = new Double(str2); oi += 1; od += 11.25; System.out.println("oi = " + oi); System.out.println("od = " + od); } }