x,y=[int(i) for i in input().split()] if y % x == 0 : print(int(y / x)) else: ans = int(y/x) print(ans + 1)