(let a (toNumber (input "a> "))) (let b (toNumber (input "b> "))) (if (= a b) (print "a = b") (if (< a b) (print "a < b") (print "a > b")))