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