lines = input() str = lines.split(" ") str = [int(s) for s in str] a = str[0] b = str[1] if b % a == 0: print(b/a) else: print(b//a + 1)