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