(define (System.out.println x) (begin (display x) (newline) ) ) (let( (NameA (read (current-input-port))) (pointA (read (current-input-port))) (foo (read (current-input-port))) (NameB (read (current-input-port))) (pointB (read (current-input-port))) (bar (read (current-input-port))) ) (cond ((> pointA pointB) (System.out.println NameA)) ((= pointA pointB) (System.out.println -1)) ((< pointA pointB) (System.out.println NameB)) ) )