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