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