x = input() y = x.split(" ") a=int(y[0]) b=int(y[1]) if b > a and b % a != 0: print(b//a+1) if b % a == 0: print(b//a) if a > b: print(1)