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