#include #include using namespace std; int main() { double a, b; cin >> a >> std::ws >> b; int ans = ceil(b / a); cout << ans << endl; }