list = list(map(int,input().split())) a = int(list[0]) b = int(list[1]) if b % a != 0: print(b/a +1) else: print(b/a)