You are viewing a single comment's thread. Return to all comments →
(defn solveMeFirst [x y] (+ x y))
(def a (read-line)) (def b (read-line))
(println (solveMeFirst (Integer/parseInt a) (Integer/parseInt b)))
Seems like cookies are disabled on this browser, please enable them to open this website
Solve Me First FP
You are viewing a single comment's thread. Return to all comments →
(defn solveMeFirst [x y]
(+ x y))
(def a (read-line)) (def b (read-line))
(println (solveMeFirst (Integer/parseInt a) (Integer/parseInt b)))