defmodule Main do def main do IO.gets("") |> String.trim() |> String.to_integer() |> (&(&1 - 1)).() |> IO.puts() end end