a, b = map(int, input().split()) amari = b % a if amari == 0: print(round(b/a)) else: print(round(b/a) + 1)