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