N = raw_input().split() A = float(N[0]) B = float(N[1]) if float(B/A) == int(B/A) : print int(B/A) else : print int(B/A) +1