a, b = gets.split.map(&:to_i) if (b % a == 0) then puts b / a elsif (b / a < b) then puts b / a + 1 end