What will be the output of the following program?
public class Colours {
public static void main(String args[]) {
int pink = 'p';
int blue = 'B';
String red = Integer.toBinaryString(pink);
String green = Integer.toOctalString(blue);
System.out.print(red + " " + green);
}
}