A, B = map(int, input().split()) C = B//A D = B%A E = C + 1 if D == 0: print(C) else: print(E)