1>Integer ie = Integer.valueOf("45");//give output 45
2>int ie = Integer.valueof("45");//give same output as 45
// can you tell me difference between 1 and second statement
3>Integer i3 = Integer.valueOf("70");//give output as 70
4>int i3 = Integer.valueOf("70");// also give same output