# Comparison operations: def eq(a, b): return a == b def ne(a, b): return a != b def ge(a, b): return a >= b