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