N = list(map(int,input().split())) steps = int(N[1]/N[0]) if N[1]%N[0]>0: steps += 1 print(steps)