#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); int a, b; cin >> a >> b; if(b % a == 1) { cout << (b / a) + 1 << '\n'; } else { cout << b / a << '\n'; } return 0; }