A,B = map(int,input().split()) C = B/A if B%A > 0: C = C + 1 print(int(C))