a, b = map(int, raw_input().split()) total = b/a if b%a == 0: print total elif b%a >= 1: print total + 1