#include using namespace std; int main(){ int a,b; cin >> a >> b; long s = (a + (b-1))/a; cout << s << endl; return 0; }