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