What will be displayed on the screen upon executing the statement in the main() method mystery("Java", 777, 11);?
public static void mystery (String s, int n) {
System.out.print(s + " " + n);
}
public static void mystery (int n) {
System.out.print("S " + n);
}
public static void mystery (String s, int n, int m) {
System.out.print(s + " " + n + " " + m);
}