#coding:utf-8 n=raw_input().split() a=int(n[0]) b=int(n[1]) cnt=0 while True: b-=a cnt+=1 if b <= 0: break print cnt