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