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