(import :std/sugar) (export main) (def (main . _) (while #t (let ((a (read)) (b (read))) (if (eof-object? a) (exit) (displayln (abs (- a b)))))))