s = input().split() a = int(s[0]) b = int(s[1]) if b % a > 0: print(b // a + 1) else: print(b //a)