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