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