0 / 60 seg.

¿Cuál es el resultado de ejecutar el siguiente código?

public static void main(String[] args) {
    String s1 = "hello";
    String s2 = "world";
    String s3 = s1 + s2;
    System.out.println(s3);
}