begin
comment bits strings operations 'and' and 'or';
	bits bt1, bt2, bt3;
start:;
	read(bt1, bt2);
	bt3 := bt1 and bt2;
	write("and = ", bt3);
	bt3 := bt1 or bt2;
	write("or = ", bt3);
	goto start;
end.
