0 / 60 seg.

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

public class Example {
  public void foo(int x, int y) {
    System.out.println("int, int");
  }
  public void foo(int x, double y) {
    System.out.println("int, double");
  }
  public static void main(String[] args) {
    Example example = new Example();
    example.foo(5, 5.0);
    example.foo(5, 5);
  }
}