(ns user)

(defn read-stdin [] (line-seq (java.io.BufferedReader. *in*)))
(defn -main
  [& args]
  (let [input (read-stdin)]
	(println input)))