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