0 / 60 seg.

What will be the result of this nested "for" loop in Java?

for (int i = 0; i < 2; i++) {
    for (int j = 0; j < 3; j++) {
        System.out.println(i + " " + j);
    }
}