a, b = map(int,input().split()) n = b // a if b % a > 0: n = n + 1 print(n)