a,b = map(int,raw_input().split()) c = b % a d = b / a if c != 0: print d + 1 else: print d