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