What will be the output of the following program?
public class Good {
public static void main(String args[]) {
int bp = 175;
String s = Integer.toHexString(bp);
String str = toHexString(bp);
System.out.println(s);
System.out.print(str);
}
static public String toHexString(int bp) {
return "good";
}
}