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