input = gets.split.map(&:to_i) a = input[0] b = input[1] ans = b / a if b % a != 0 ans += 1 end puts ans