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