a,b = map(int, input().split(" ")) s = b//a if b%a != 0: s += 1 print(s)