0 / 60 seg.

What is the result of this Java code in a number concatenation program?

String num1 = "23", num2 = "11", num3 = "45", num4 = "112";
int result = Integer.parseInt(num1 + num2) + Integer.parseInt(num3 + num4);
System.out.println(result);