l = map(int, raw_input().split()) if l[1] %l[0] == 0: print ( l[1] / l[0] ) else: print ( l[1] / l[0] + 1)