#include using namespace std; int main() { int a,b; cin >> a >> b; double c; int d; c = (double) b / a; d = b / a; if ( c > d ) { cout << d+1 << '\n'; } else { cout << d << '\n'; } return 0; }