#include using namespace std; int main(void){ int a, b, ans; cin >> a >> b; ans = b%a ? b / a + 1 : b / a; cout << ans << endl; return 0; }