(set-logic QF_UF) (declare-fun a () Bool) (declare-fun b () Bool) (assert (let ((?v_1 (and a b)) (?v_2 (not a))) (and ?v_1 ?v_2))) (check-sat) (exit)