a, b = map(int, input().split()) res = b // a if b % a == 0 else b // a + 1 print(res)