10 + (5 - 3) + 2 / 4 Convert expression into prefix-p notation

Convert the following expression into prefix-p notation (Scheme statement):

    10 + (5 - 3) + 2 / 4

    Answers:
    A.
    (/ (+ 10 (- 5 3) 2) 4)
   
    B.
    10 + (5 - 3) + 2 / 4
   
    C.
    + 10 - 5 3  / 2 4
   
    D.

    (+ 10 (- 5 3)  (/ 2 4))

Answer. D.