(define (solve t1 t2) (string-append "(" t1 t2 t1 ")/")) (define (main args) (let* ([t1 (read-line)] [t2 (read-line)]) (print (solve t1 t2))) 0)