#include using namespace std; int main() { int a, b; cin >> a >> b; int steps = (b + a - 1) / a; cout << steps << endl; return 0; }