defmodule Main do def main do IO.gets("") |> String.trim() |> String.to_integer() |> (&"#{(&1 / 2) |> trunc} #{&1 - ((&1 / 2) |> trunc)}").() |> IO.puts() end end