What will be the output of the following program?
public class CombinedInf {
public static void main(String[] args) {
int c1 = 65;
char c2 = 'P';
char c3 = 'L';
char c4 = 'E';
System.out.print(c1);
System.out.print(c2);
System.out.print(c2);
System.out.print(c3);
System.out.print(c4);
}
}