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