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