a = int(input()) b = int(input()) if b % a == 0: n = b / a print(int(n)) else: b % a != 0 n = b / a + 1 print(int(n))