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