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