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