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