Scanf.scanf "%d" (fun n -> let rec loop k = if k <= n then ( Printf.printf "%d " k; loop (k + 2) ) else print_newline () in loop 1 )