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