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