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