defmodule Main do def main do [a, b] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1) IO.puts( div((a+b-1),a)) end end