program bool(output);
var
  x: boolean;
  y,z: boolean;
begin
  x := true or false and true;
  y := not x;
end.

