What will be the output of the following program?
public class Numbers {
public static void main(String args[]) {
String numbers[] = {"123", "133", "143", "153"};
int one = Integer.parseInt(numbers[0]);
float two = Float.parseFloat(numbers[1]);
double three = Double.parseDouble(numbers[2]);
byte four = Byte.parseByte(numbers[3]);
System.out.print(one + " " + two + " " + three + " " + four);
}
}