inpt = map(int, raw_input().split()) a = inpt[0] b = inpt[1] x = b / a if b % a != 0: x += 1 print x