#a,bを取得 a,b= map(int,input().split()) if (b%a==0): #割り切れる時 print(b//a) else: #割り切れない時 print(b//a+1)