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