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