let () = let raw = read_line () |> int_of_string in let raw = if (raw mod 2) = 0 then raw + 1 else raw in print_int raw; print_newline ();;