a ,b = map(int, input().split()) distance = 0 ans = 0 while distance < b: distance += a ans += 1 print(ans)