(define (solve N) (display(quotient N 2)) (display " ") (display (- N (quotient N 2))) (newline) ) (solve(read))