program booltest (input, output);
var b : boolean;
begin
    b := true;
    b := false;
end.
