Created
September 29, 2013 14:43
-
-
Save holyketzer/6753088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let main () = | |
let gr () = Scanf.scanf " %d" (fun i -> i) in | |
let n = gr () in | |
let m = gr () in | |
let d = gr () in | |
Printf.printf "%d %d %d" n m d | |
;; | |
let _= main();; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment