¿Qué imprimirá el siguiente código Java?
int x = 5; int y = 7; System.out.println(x + y + "total");
57total
Error de compilación
5 + 7total
12total