first=int(raw_input()) first_split=first.split() a=int(first_sprit[0]) b=int(first_sprit[1]) if b%a==0: print(b/a) else: print(b/a+1)