Program P10;
 { Date de tip boolean }
var x : boolean;
begin
 x:=false;
 writeln(x);
 x:=true;
 writeln(x);
end.

