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