#include using namespace std; int main() { int step, end; int ans; int rem; cin >> step >> end; ans = end / step; rem = end % step; if (rem > 0) { ans++; } cout << ans << endl; return 0; }