num = [int(i) for i in input().split()] ans = num[1] / num[0] amari = num[1] % num[0] if amari != 0: print(int(ans) + 1) else: print(int(ans))