a, b = map(int, input().rstrip().split(' ')) if b % a > 0: hosu = b//a + 1 else: hosu = b//a print(hosu)