#include using namespace std; int main() { int a, b; cin >> a >> b; int t = b/a; if (b%a > 0) t++; cout << t << endl; return 0; }