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