What will be the output of the following program?
public class AdditionOfData {
public static void main(String[] args) {
String data = "20", dataI;
int i = Integer.parseInt(data);
dataI = Integer.toHexString(i);
Short s = Short.parseShort(dataI);
float f = Float.parseFloat(data);
long l = Long.parseLong(data);
System.out.println(i + s + f + l);
}
}