#include using namespace std; int main(){ int a,b; cin >> a >> b; int cnt=0,walk=0; while(walk>b){ walk+=a; ++cnt; } cout << cnt << endl; }