a, b = map(int, raw_input().split()) q, mod = divmod(b, a) if (mod != 0):q += 1 print q