str = [int(x) for x in input().split(" ")] a = str[0] b = str[1] if b % a == 0: print(b // a) else: print(b // a + 1)