#include using namespace std; int main(void){ int a, b; cin >> a >> b; int diff = (b/a+1); cout << diff << endl; }