Program P12;
 { Date de tip char }
var x : char;
begin
 x:='A';
 writeln(x);
 x:='+';
 writeln(x);
 x:='''';
 writeln(x);
end.


