defmodule Main do def main do IO.gets("") |> String.trim() |> String.to_integer() |> (fn y -> 2017 - y end).() |> IO.puts() end end