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