> (defun int-exp (a b)
    (trunc (math:pow a b)))
int-exp
> (set lfe (int-exp 2 0))
1
> (set hy (int-exp 2 5))
32
> (set clojure (int-exp 2 6))
64
> (bxor clojure (bxor lfe hy))
97
> (integer_to_list (bxor clojure (bxor lfe hy)) 2)
"1100001"
>