(set-logic QF_AUFLIRA) (set-info :smt-lib-version 2.0) (set-info :category "crafted") (set-info :status unsat) (declare-fun v1 () Int) (declare-fun v2 () Int) (declare-fun v3 () Int) (declare-fun v4 () Int) (assert (= (* v1 v2) v3)) (assert (< v3 v4)) (assert (> v3 (- v4 1))) (check-sat) (exit)