#include int main() { int a,b; std::cin >> a >> b; int ans = 0; do { ans++; b -= a; } while (b>0); std::cout << ans << std::endl; }