(define (solve a b) (format #f "~a ~a" b a)) (define (main args) (let* ([a (read)] [b (read)]) (print (solve a b))) 0)