What will be the output of the following program?
public class System {
public static void main(String args[]) {
char keyboard = 'K';
char chair = 'C';
Character table = new Character(keyboard);
Character table1 = new Character(chair);
System.out.println(table + table1);
System.out.print(table + " " + table1);
}
}