begin
comment inverse of bits string variable;
	bits bt, bt1;
	bt := #123abc;
	bt1 := ~bt;
	write(bt, bt1);
end.
